[BASESRV] Make Buffer MAX_PATH big again

This commit is contained in:
Pierre Schweitzer 2019-05-08 20:39:57 +02:00
parent 20f5797386
commit bd7b0c96c6
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -291,7 +291,7 @@ BaseInitializeStaticServerData(IN PCSR_SERVER_DLL LoadedServerDll)
NTSTATUS Status; NTSTATUS Status;
BOOLEAN Success; BOOLEAN Success;
WCHAR BnoBuffer[100]; WCHAR BnoBuffer[100];
WCHAR Buffer[100]; WCHAR Buffer[MAX_PATH];
PWCHAR HeapBuffer; PWCHAR HeapBuffer;
UNICODE_STRING SystemRootString; UNICODE_STRING SystemRootString;
UNICODE_STRING UnexpandedSystemRootString = RTL_CONSTANT_STRING(L"%SystemRoot%"); UNICODE_STRING UnexpandedSystemRootString = RTL_CONSTANT_STRING(L"%SystemRoot%");