Commit 001fa262 authored by Warren Baird's avatar Warren Baird Committed by Alexandre Julliard

Increase size of insufficiently big stack allocated buffer used for

error messages in PROCESS_InitWine.
parent 1868b026
...@@ -575,7 +575,7 @@ static void start_process(void) ...@@ -575,7 +575,7 @@ static void start_process(void)
*/ */
void PROCESS_InitWine( int argc, char *argv[], LPSTR win16_exe_name, HANDLE *win16_exe_file ) void PROCESS_InitWine( int argc, char *argv[], LPSTR win16_exe_name, HANDLE *win16_exe_file )
{ {
char error[100], *p; char error[1024], *p;
DWORD stack_size = 0; DWORD stack_size = 0;
/* Initialize everything */ /* Initialize everything */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment