krnl386.exe16: Remove dead initialization (Clang).

This commit is contained in:
Frédéric Delanoy 2011-07-06 10:34:41 +02:00 committed by Alexandre Julliard
parent 44296402e9
commit ca70492ab3
2 changed files with 2 additions and 2 deletions

View File

@ -473,7 +473,7 @@ LPVOID DOSMEM_AllocBlock(UINT size, UINT16* pseg)
{
MCB *curr;
MCB *next = NULL;
WORD psp = DOSVM_psp;
WORD psp;
DOSMEM_InitDosMemory();

View File

@ -1400,7 +1400,7 @@ void WINAPI FreeLibrary16( HINSTANCE16 handle )
*/
HMODULE16 WINAPI GetModuleHandle16( LPCSTR name )
{
HMODULE16 hModule = hFirstModule;
HMODULE16 hModule;
LPSTR s;
BYTE len, *name_table;
char tmpstr[MAX_PATH];