Skip to content
Snippets Groups Projects
Commit 1117fa68 authored by Rémi Bernon's avatar Rémi Bernon :speech_balloon: Committed by Alexandre Julliard
Browse files

mscoree/tests: Fix some format-overflow warnings.

parent c4851dec
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ static BOOL write_resource_file(const char *path_tmp, const char *name_res, cons ...@@ -71,7 +71,7 @@ static BOOL write_resource_file(const char *path_tmp, const char *name_res, cons
static BOOL compile_cs_to_dll(char *source_path, char *dest_path) static BOOL compile_cs_to_dll(char *source_path, char *dest_path)
{ {
const char *path_csc = "C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\csc.exe"; const char *path_csc = "C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\csc.exe";
char cmdline[MAX_PATH]; char cmdline[2 * MAX_PATH + 74];
char path_temp[MAX_PATH]; char path_temp[MAX_PATH];
PROCESS_INFORMATION pi; PROCESS_INFORMATION pi;
STARTUPINFOA si = { 0 }; STARTUPINFOA si = { 0 };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment