You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* FIXME: we can't even use DuplicateHandle() SDK: For example, a
* file handle created with the GENERIC_READ access right cannot
* be duplicated so that it has both the GENERIC_READ and
* GENERIC_WRITE access right.
Describe the solution you'd like
Add support for the ReOpenFile function since it fixes both issues including cases where handles are duplicated using DuplicateHandle. The function is available on Vista and above.
The text was updated successfully, but these errors were encountered:
The aslr_module_get_times function has multiple issues with file handles per these comments:
dynamorio/core/win32/aslr.c
Lines 4475 to 4478 in b0237d2
dynamorio/core/win32/aslr.c
Lines 4516 to 4519 in b0237d2
Add support for the ReOpenFile function since it fixes both issues including cases where handles are duplicated using DuplicateHandle. The function is available on Vista and above.
The text was updated successfully, but these errors were encountered: