aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog2
-rw-r--r--mail/main.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 0aa448bf43..257af848b5 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,7 @@
2002-09-12 Jeffrey Stedfast <fejj@ximian.com>
+ * main.c (main): Ignore SIGXFSZ to fix bug #30269.
+
* upgrade-mailer.c (cache_upgrade_and_free): The new callback
function for the g_hash_table_foreach which both upgrades the
cache for that store and then free's the struct _storeinfo
diff --git a/mail/main.c b/mail/main.c
index 7158fc3bbb..7c3f0ff34a 100644
--- a/mail/main.c
+++ b/mail/main.c
@@ -109,6 +109,9 @@ main (int argc, char *argv [])
sigaction (SIGSEGV, &sa, NULL);
sigaction (SIGBUS, &sa, NULL);
sigaction (SIGFPE, &sa, NULL);
+
+ sa.sa_handler = SIG_IGN;
+ sigaction (SIGXFSZ, &sa, NULL);
gnome_segv_handler = osa.sa_handler;
g_static_mutex_lock (&segv_mutex);
}