diff options
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 9854c103d..4e18e2791 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -338,7 +338,7 @@ extern "C" int try_to_debug (bool waitloop) { debug_printf ("debugger_command '%s'", debugger_command); - if (*debugger_command == '\0') + if (*debugger_command == '\0' || being_debugged ()) return 0; __small_sprintf (strchr (debugger_command, '\0'), " %u", GetCurrentProcessId ()); |