summaryrefslogtreecommitdiff
path: root/warnings.pl
diff options
context:
space:
mode:
authorkaminsky@math.huji.ac.il <kaminsky@math.huji.ac.il>2004-10-05 09:52:07 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-10-12 16:07:54 +0000
commit9df0f64f445f30276560fec596914dd510e244e9 (patch)
treebb752d66ed9c7c2d70119b6f6b14bdd45a39a139 /warnings.pl
parentd2b2597412218806baa0430cf97cc8334ac3ec71 (diff)
downloadperl-9df0f64f445f30276560fec596914dd510e244e9.tar.gz
[perl #31843] warnings::warn($obj,...) fails when $obj overloads ""
From: kaminsky@math.huji.ac.il (via RT) <perlbug-followup@perl.org> Message-ID: <rt-3.0.11-31843-97358.2.89612012687236@perl.org> (with tweaks) p4raw-id: //depot/perl@23361
Diffstat (limited to 'warnings.pl')
-rw-r--r--warnings.pl10
1 files changed, 6 insertions, 4 deletions
diff --git a/warnings.pl b/warnings.pl
index df766fea3d..24246f5366 100644
--- a/warnings.pl
+++ b/warnings.pl
@@ -710,6 +710,8 @@ sub unimport
${^WARNING_BITS} = $mask ;
}
+my %builtin_type; @builtin_type{qw(SCALAR ARRAY HASH CODE REF GLOB LVALUE Regexp)} = ();
+
sub __chk
{
my $category ;
@@ -719,10 +721,10 @@ sub __chk
if (@_) {
# check the category supplied.
$category = shift ;
- if (ref $category) {
- Croaker ("not an object")
- if $category !~ /^([^=]+)=/ ;
- $category = $1 ;
+ if (my $type = ref $category) {
+ Croaker("not an object")
+ if exists $builtin_type{$type};
+ $category = $type;
$isobj = 1 ;
}
$offset = $Offsets{$category};