Skip Menu |

This queue is for tickets about the Hyper CPAN distribution.

Report information
The Basics
Id: 41807
Status: resolved
Worked: 1 hour (60 min)
Priority: 0/
Queue: Hyper

People
Owner: ac0v [...] sys-network.de
Requestors: STEFFENW [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.03
Fixed in: (no value)



Subject: Recursion in Error.pl
Only a called die is routed to Core::die but not a normal exception. Change: sub _show_error_message { # prevent from endless loops if we die internaly local *CORE::GLOBAL::die; { no warnings qw(redefine); *CORE::GLOBAL::die = sub { CORE::die(@_) }; } to: sub _show_error_message { # prevent from endless loops if we die internaly local (*CORE::GLOBAL::die, $main::SIG{__DIE__}); { no warnings qw(redefine); *CORE::GLOBAL::die = $main::SIG{__DIE__} = sub { CORE::die(@_) }; }
Subject: Recursion in Hyper::Error
The Module is Hyper::Error and not Error.pl.
Bug is fixed in 0.04 (http://svn.hyper-framework.org/Hyper/Hyper/branches/0.04/) This version has just been released on CPAN. Thanks for Reporting this Bug, Steffen :) Regards from ICE 920 (Munich -> Nueremberg), Andreas 'ac0v' Specht