Issue 161: reviewer Waylonis

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@160 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
ladderbreaker 2007-05-07 19:48:02 +00:00
parent 0c70be6873
commit 3d55532df2

View File

@ -216,7 +216,7 @@ bool ExceptionHandler::WriteMinidumpWithException(int exception_type,
exception_code,
thread_name) ) {
if (exception_type && exception_code)
exit(exception_type);
_exit(exception_type);
}
} else {
string minidump_id;
@ -245,7 +245,7 @@ bool ExceptionHandler::WriteMinidumpWithException(int exception_type,
if (callback_(dump_path_c_, next_minidump_id_c_, callback_context_,
result)) {
if (exception_type && exception_code)
exit(exception_type);
_exit(exception_type);
}
}
}