krnl386.exe16: Remove dead initialization (Clang).
This commit is contained in:
parent
44296402e9
commit
ca70492ab3
|
@ -473,7 +473,7 @@ LPVOID DOSMEM_AllocBlock(UINT size, UINT16* pseg)
|
|||
{
|
||||
MCB *curr;
|
||||
MCB *next = NULL;
|
||||
WORD psp = DOSVM_psp;
|
||||
WORD psp;
|
||||
|
||||
DOSMEM_InitDosMemory();
|
||||
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue