diff options
author | GZNGET FOSS Team <opensource@gznianguan.com> | 2017-11-13 12:08:59 +0100 |
---|---|---|
committer | GZNGET FOSS Team <opensource@gznianguan.com> | 2017-11-13 12:08:59 +0100 |
commit | d95e2bd7a8f47a581f9337e5bc7413b2bdabeafc (patch) | |
tree | c1d69aebc66e00fdb69d78299bbba15f51537087 /lib | |
parent | 1cde4e4eeb56a16335a965251122dbae52b28d41 (diff) | |
download | perl-Arctica-Core-BugOUT-d95e2bd7a8f47a581f9337e5bc7413b2bdabeafc.tar.gz perl-Arctica-Core-BugOUT-d95e2bd7a8f47a581f9337e5bc7413b2bdabeafc.tar.bz2 perl-Arctica-Core-BugOUT-d95e2bd7a8f47a581f9337e5bc7413b2bdabeafc.zip |
Facepalm moment. Dirty fix for eval nulling
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Arctica/Core/BugOUT/Basics.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Arctica/Core/BugOUT/Basics.pm b/lib/Arctica/Core/BugOUT/Basics.pm index 7abd9b7..133a3a0 100644 --- a/lib/Arctica/Core/BugOUT/Basics.pm +++ b/lib/Arctica/Core/BugOUT/Basics.pm @@ -98,7 +98,7 @@ sub new { # DO SOMETHING ELSE TO TIE INDIVIDUAL SIGNALS TO RESPECTIVE FUNCTIONS # Probably Make a SIG SET sub at some point.... $SIG{__WARN__} = sub {BugOUT(1,$_[0]);}; - $SIG{__DIE__} = sub {BugOUT(0,$_[0]);}; + $SIG{__DIE__} = sub {BugOUT(1,$_[0]);};#FIXME MAKE THIS WORK PROPERLY AGAIN.... SOME TIME... return $BugOUT_self; } |