From 960e911c317fcaa8cfd6d24ed549626281318901 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Tue, 23 Mar 2010 04:17:39 -0400 Subject: [PATCH] vm: another fix --- vm/mach_signal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/mach_signal.cpp b/vm/mach_signal.cpp index 5a96bdaf3f..6295381b1c 100644 --- a/vm/mach_signal.cpp +++ b/vm/mach_signal.cpp @@ -104,7 +104,7 @@ catch_exception_raise (mach_port_t exception_port, mach_msg_type_number_t code_count) { /* 10.6 likes to report exceptions from child processes too. Ignore those */ - if(task != mach_task_self()) return KERN_SUCCESS; + if(task != mach_task_self()) return KERN_FAILURE; /* Get fault information and the faulting thread's register contents..