mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 14:24:45 +00:00
ntdll: Do not fail to relocate an image if the size of relocation block is 0.
This commit is contained in:
parent
3b5107d063
commit
7386de357f
1 changed files with 4 additions and 2 deletions
|
@ -1680,14 +1680,16 @@ static NTSTATUS perform_relocations( void *module, SIZE_T len )
|
|||
|
||||
relocs = &nt->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_BASERELOC];
|
||||
|
||||
if ((nt->FileHeader.Characteristics & IMAGE_FILE_RELOCS_STRIPPED) ||
|
||||
!relocs->VirtualAddress || !relocs->Size)
|
||||
if (nt->FileHeader.Characteristics & IMAGE_FILE_RELOCS_STRIPPED)
|
||||
{
|
||||
WARN( "Need to relocate module from %p to %p, but there are no relocation records\n",
|
||||
base, module );
|
||||
return STATUS_CONFLICTING_ADDRESSES;
|
||||
}
|
||||
|
||||
if (!relocs->Size) return STATUS_SUCCESS;
|
||||
if (!relocs->VirtualAddress) return STATUS_CONFLICTING_ADDRESSES;
|
||||
|
||||
if (nt->FileHeader.NumberOfSections > sizeof(protect_old)/sizeof(protect_old[0]))
|
||||
return STATUS_INVALID_IMAGE_FORMAT;
|
||||
|
||||
|
|
Loading…
Reference in a new issue