Commit ca70492a authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

krnl386.exe16: Remove dead initialization (Clang).

parent 44296402
...@@ -473,7 +473,7 @@ LPVOID DOSMEM_AllocBlock(UINT size, UINT16* pseg) ...@@ -473,7 +473,7 @@ LPVOID DOSMEM_AllocBlock(UINT size, UINT16* pseg)
{ {
MCB *curr; MCB *curr;
MCB *next = NULL; MCB *next = NULL;
WORD psp = DOSVM_psp; WORD psp;
DOSMEM_InitDosMemory(); DOSMEM_InitDosMemory();
......
...@@ -1400,7 +1400,7 @@ void WINAPI FreeLibrary16( HINSTANCE16 handle ) ...@@ -1400,7 +1400,7 @@ void WINAPI FreeLibrary16( HINSTANCE16 handle )
*/ */
HMODULE16 WINAPI GetModuleHandle16( LPCSTR name ) HMODULE16 WINAPI GetModuleHandle16( LPCSTR name )
{ {
HMODULE16 hModule = hFirstModule; HMODULE16 hModule;
LPSTR s; LPSTR s;
BYTE len, *name_table; BYTE len, *name_table;
char tmpstr[MAX_PATH]; char tmpstr[MAX_PATH];
......
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