aboutsummaryrefslogtreecommitdiff
path: root/gdb/windows-nat.c
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2022-05-20 14:45:53 +0100
committerJon Turney <jon.turney@dronecode.org.uk>2022-06-02 10:39:46 +0100
commit1f03fa9921802a727bb218da2df26e4ed14fc1c9 (patch)
treed5faf593f1dc8f1aa4d95aa7700f417a1f292390 /gdb/windows-nat.c
parentc9c157c7650a7570123869445e7dd331ecdd3317 (diff)
downloadfsf-binutils-gdb-1f03fa9921802a727bb218da2df26e4ed14fc1c9.zip
fsf-binutils-gdb-1f03fa9921802a727bb218da2df26e4ed14fc1c9.tar.gz
fsf-binutils-gdb-1f03fa9921802a727bb218da2df26e4ed14fc1c9.tar.bz2
Fix Cygwin build after 0578e87f
Fix Cygwin build after 0578e87f ("Remove some globals from nat/windows-nat.c"). Update code under ifdef __CYGWIN__ for globals moved to members of struct windows_process_info.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r--gdb/windows-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 6c6dea8..ab0efe7 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -884,7 +884,7 @@ windows_nat::windows_process_info::handle_output_debug_string
if (!retval)
retval = current_event.dwThreadId;
else if ((x = (LPCVOID) (uintptr_t) strtoull (p, NULL, 0))
- && ReadProcessMemory (current_process_handle, x,
+ && ReadProcessMemory (handle, x,
&saved_context,
__COPY_CONTEXT_SIZE, &n)
&& n == __COPY_CONTEXT_SIZE)