mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 14:17:58 +00:00
krnl386.exe16: Remove dead initialization (Clang).
This commit is contained in:
parent
44296402e9
commit
ca70492ab3
2 changed files with 2 additions and 2 deletions
|
@ -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 )
|
||||||
*/
|
*/
|
||||||
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];
|
||||||
|
|
Loading…
Reference in a new issue