Skip Menu |

This queue is for tickets about the XML-SAX CPAN distribution.

Report information
The Basics
Id: 4223
Status: resolved
Priority: 0/
Queue: XML-SAX

People
Owner: Nobody in particular
Requestors: MICAJA [...] de.ibm.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.12
Fixed in: (no value)



Subject: side effect from UNIVERSAL
XML/SAX/Base.pm:2113 elsif (defined $callbacks->{'Handler'} and $callbacks->{'Handler'}->can('AUTOLOAD') ) { should read: elsif (defined $callbacks->{'Handler'} and $callbacks->{'Handler'}->can('AUTOLOAD') and $callbacks->{'Handler'}->can('AUTOLOAD') ne UNIVERSAL->can('AUTOLOAD')) { else it will never reach the else branch if some other (brain dead) module installs a &UNIVERSAL::AUTOLOAD... Thank you.