diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d074a3de23..5eeec97f8e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2016-07-21 Pedro Alves + + * windows-nat.c (handle_exception): Remove "th". + 2016-07-21 Pedro Alves * varobj.c (varobj_value_get_print_value): Move "gdbarch" to block diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 149403ae0c..c95dc9a3c5 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -1014,13 +1014,12 @@ display_selectors (char * args, int from_tty) static int handle_exception (struct target_waitstatus *ourstatus) { - windows_thread_info *th; DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode; ourstatus->kind = TARGET_WAITKIND_STOPPED; /* Record the context of the current thread. */ - th = thread_rec (current_event.dwThreadId, -1); + thread_rec (current_event.dwThreadId, -1); switch (code) {