Julien Cristau <[email protected]> writes:

> maybe change that exit() to FatalError()?

Yeah, not actually necessary as previous_busfault_sigaction will always
be set, but a trivial change to make.

diff --git a/os/busfault.c b/os/busfault.c
index 45ee074..78e7693 100644
--- a/os/busfault.c
+++ b/os/busfault.c
@@ -131,7 +131,7 @@ panic:
     if (previous_busfault_sigaction)
         (*previous_busfault_sigaction)(sig, info, param);
     else
-        exit(1);
+        FatalError("bus error");
 }
 
 Bool

-- 
[email protected]

Attachment: pgprGGWxKiXCB.pgp
Description: PGP signature

_______________________________________________
[email protected]: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to