Skip to content

Commit

Permalink
Fix minor bug pointed out by Roman.
Browse files Browse the repository at this point in the history
  • Loading branch information
yugr committed Feb 27, 2021
1 parent 44551ad commit 2171981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ int run_gdb(unsigned dbg_flags, const char *dbg_opts) {
"%s", (long)ppid, dbg_opts);
if(nread >= (int)sizeof(buf) - 1) {
SAFE_MSG("libdebugme: increase size of buffer in run_gdb\n");
exit(1);
_exit(1);
}

if(dbg_flags & DEBUGME_XTERM) {
Expand Down

0 comments on commit 2171981

Please sign in to comment.