Skip to content

Commit

Permalink
modprv hash table correction
Browse files Browse the repository at this point in the history
  • Loading branch information
jxy-s committed Oct 6, 2024
1 parent 90012bf commit 0abfd3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SystemInformer/modprv.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ BOOLEAN NTAPI PhpModuleHashtableEqualFunction(
{
return ((entry1->BaseAddress == entry2->BaseAddress) &&
(entry1->EnclaveBaseAddress == entry2->EnclaveBaseAddress) &&
PhEqualString(entry1->FileName, entry2->FileName, TRUE));
PhEqualString(entry1->FileName, entry2->FileName, FALSE));
}
else
{
Expand Down

0 comments on commit 0abfd3c

Please sign in to comment.