forked from KindDragon/vld
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bad restore of the protection flags for memory pages when finding…
… real code for hooks (#10) * Add some logging for virtual protect failures * More test code * More hacks * Have a smarter VirtualProtect * Fix 64 biit path to call recursively into FindRealCode * Adjust protected area * Address CR comments * Bump version number and update changelog
- Loading branch information
1 parent
30111f7
commit c1967cc
Showing
4 changed files
with
126 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
|
||
#define VLDVERSION L"2.5.7" | ||
#define VERSION_NUMBER 2,5,7,0 | ||
#define VERSION_STRING "2.5.7.0" | ||
#define VERSION_COPYRIGHT "Copyright (C) 2005-2020" | ||
#define VLDVERSION L"2.5.8" | ||
#define VERSION_NUMBER 2,5,8,0 | ||
#define VERSION_STRING "2.5.8.0" | ||
#define VERSION_COPYRIGHT "Copyright (C) 2005-2021" | ||
|
||
#ifndef __FILE__ | ||
!define VLD_VERSION "2.5.7" // NSIS Script | ||
!define VLD_VERSION "2.5.8" // NSIS Script | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c1967cc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the fix! very helpful!
c1967cc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent fix! Much thanks!