krnl386.exe16: Increase buffer size in GetTempDrive.

This commit is contained in:
Michael Müller 2015-08-19 06:35:21 +02:00 committed by Alexandre Julliard
parent 130c655e2f
commit 33aa59abea
1 changed files with 2 additions and 2 deletions

View File

@ -461,10 +461,10 @@ LONG WINAPI _hwrite16( HFILE16 hFile, LPCSTR buffer, LONG count )
*/
UINT WINAPI GetTempDrive( BYTE ignored )
{
WCHAR buffer[8];
WCHAR buffer[MAX_PATH];
BYTE ret;
if (GetTempPathW( 8, buffer )) ret = (BYTE)toupperW(buffer[0]);
if (GetTempPathW( MAX_PATH, buffer )) ret = (BYTE)toupperW(buffer[0]);
else ret = 'C';
return MAKELONG( ret | (':' << 8), 1 );
}