mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
- Make behavior consistent: if there is no relocation information, return SUCCESS in both possible cases.
See issue #2268 for more details. svn path=/trunk/; revision=29895
This commit is contained in:
parent
f6640c9b72
commit
0b279a26b2
1 changed files with 1 additions and 1 deletions
|
@ -1230,7 +1230,7 @@ LdrPerformRelocations(PIMAGE_NT_HEADERS NTHeaders,
|
|||
|
||||
if (NTHeaders->FileHeader.Characteristics & IMAGE_FILE_RELOCS_STRIPPED)
|
||||
{
|
||||
return STATUS_UNSUCCESSFUL;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
RelocationDDir =
|
||||
|
|
Loading…
Reference in a new issue