From 3d55532df2ea6bc8809513e8add14fb84bc62a62 Mon Sep 17 00:00:00 2001 From: ladderbreaker Date: Mon, 7 May 2007 19:48:02 +0000 Subject: Issue 161: reviewer Waylonis git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@160 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/client/mac/handler/exception_handler.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/mac/handler') diff --git a/src/client/mac/handler/exception_handler.cc b/src/client/mac/handler/exception_handler.cc index eee562b2..ab2cc489 100644 --- a/src/client/mac/handler/exception_handler.cc +++ b/src/client/mac/handler/exception_handler.cc @@ -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); } } } -- cgit v1.2.1