Commit 39f73a22 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 ELF_LoadLibraryExA.
parent 41bbe707
......@@ -118,7 +118,7 @@ WINE_MODREF *ELF_LoadLibraryExA( LPCSTR libname, DWORD flags)
HMODULE hmod;
char *modname,*s,*t,*x;
LPVOID *dlhandle;
char error[256];
char error[1024];
t = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
strlen(libname) + strlen("lib.so") + 1 );
......
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