You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use_dhandlers and use_autohandlers fall into the return precedence trap [perl #59802].
i.e. return defined $self->{autohandler_name} and length $self->{autohandler_name};
never checks the length as it parses to
(return defined $self->{autohandler_name}) and length $self->{autohandler_name};
See attached patch
The text was updated successfully, but these errors were encountered:
Migrated from rt.cpan.org #87050 (status was 'new')
Requestors:
Attachments:
From [email protected] on 2013-07-19 14:40:29
:
use_dhandlers and use_autohandlers fall into the return precedence trap [perl #59802].
i.e. return defined $self->{autohandler_name} and length $self->{autohandler_name};
never checks the length as it parses to
(return defined $self->{autohandler_name}) and length $self->{autohandler_name};
See attached patch
The text was updated successfully, but these errors were encountered: