commit | 3723c2c8e9e82e216b23f232f8ed2d2d6834251c | [log] [tgz] |
---|---|---|
author | Ulrich Weigand <weigand@informatik.uni-erlangen.de> | Sat Oct 23 16:49:49 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sat Oct 23 16:49:49 1999 +0000 |
tree | a5a0e0c5ccd445b1773d1ad6b7eaa5f37d293427 | |
parent | c6ad2b6fc3057bfbd7ea0f059a832a61cd3122c6 [diff] [blame] |
Bugfix: Perform proper process shutdown on 'quit' and error.
diff --git a/debugger/debug.l b/debugger/debug.l index 02aa298..045ec39 100644 --- a/debugger/debug.l +++ b/debugger/debug.l
@@ -239,7 +239,7 @@ if (!line) { fprintf( stderr, "\n" ); - exit(0); + DEBUG_Exit(0); } /* Remove leading and trailing whitespace from the line */ @@ -264,7 +264,7 @@ if (size < len + 1) { fprintf(stderr,"Fatal readline goof.\n"); - exit(0); + DEBUG_Exit(0); } strcpy(buf, line); buf[len] = '\n';