Skip to content

Commit

Permalink
fix bug for bindiat by ordinary in 32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriSizuku committed Oct 8, 2024
1 parent 95cf68c commit 517fb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/winpe.h
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ size_t STDCALL winpe_membindiat(void *mempe,
}
else
{
if(((size_t)pImpByName>>31) == 1)
if(((size_t)_addr>>31) == 1)
{
funcname = (char *)(_addr & 0x0000ffff);
}
Expand Down

0 comments on commit 517fb6b

Please sign in to comment.