Commit ed38d128 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

ntdll: Double dll name buffer size for relay traces.

parent e7b0b35d
...@@ -1343,7 +1343,7 @@ static void call_tls_callbacks( HMODULE module, UINT reason ) ...@@ -1343,7 +1343,7 @@ static void call_tls_callbacks( HMODULE module, UINT reason )
*/ */
static NTSTATUS MODULE_InitDLL( WINE_MODREF *wm, UINT reason, LPVOID lpReserved ) static NTSTATUS MODULE_InitDLL( WINE_MODREF *wm, UINT reason, LPVOID lpReserved )
{ {
WCHAR mod_name[32]; WCHAR mod_name[64];
NTSTATUS status = STATUS_SUCCESS; NTSTATUS status = STATUS_SUCCESS;
DLLENTRYPROC entry = wm->ldr.EntryPoint; DLLENTRYPROC entry = wm->ldr.EntryPoint;
void *module = wm->ldr.DllBase; void *module = wm->ldr.DllBase;
......
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