mscoree/tests: Fix some format-overflow warnings.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c4851dece3
commit
1117fa68db
|
@ -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 };
|
||||||
|
|
Loading…
Reference in New Issue