Skip to content

Commit 0557de0

Browse files
committed
Fix the size for one of our remote reads
1 parent 25cc486 commit 0557de0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/remote_debugging.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ send_exec_to_proc_handle(proc_handle_t *handle, int tid, const char *debugger_sc
808808
if (0 != read_memory(
809809
handle,
810810
thread_state_addr + debug_offsets.thread_state.native_thread_id,
811-
sizeof(pid_t),
811+
sizeof(this_tid),
812812
&this_tid))
813813
{
814814
return -1;

0 commit comments

Comments
 (0)