forked from KolibriOS/kolibrios
fix for dll.inc (r3014)
git-svn-id: svn://kolibrios.org@3038 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
c61318c4d9
commit
aee4b03443
@ -17,7 +17,13 @@ proc dll.Load, import_table:dword
|
||||
or eax, eax
|
||||
jz .fail
|
||||
stdcall dll.Link, eax, edx
|
||||
push eax
|
||||
mov eax, [eax]
|
||||
cmp dword[eax], 'lib_'
|
||||
pop eax
|
||||
jnz @f
|
||||
stdcall dll.Init, [eax + 4]
|
||||
@@:
|
||||
pop esi
|
||||
add esi, 8
|
||||
jmp .next_lib
|
||||
|
Loading…
Reference in New Issue
Block a user