From b25c8cf1d14b31890e44fbb5b239ff5f8867b394 Mon Sep 17 00:00:00 2001 From: Wouter Coekaerts Date: Tue, 12 Sep 2006 09:37:18 +0000 Subject: [PATCH] Don't crash on /quit with scripts causing and catching signals during UNLOAD (thanks senneth) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4340 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/perl/perl-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/perl/perl-core.c b/src/perl/perl-core.c index 5733db14..2b660eef 100644 --- a/src/perl/perl-core.c +++ b/src/perl/perl-core.c @@ -470,8 +470,8 @@ void perl_core_init(void) void perl_core_deinit(void) { - perl_signals_deinit(); perl_scripts_deinit(); + perl_signals_deinit(); signal_remove("script error", (SIGNAL_FUNC) sig_script_error); }