summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-09-24 10:29:54 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-09-24 10:29:54 +0000
commit344462d3dde55465e709768c0d1dbfa2a8198aa5 (patch)
tree518a938ea16792c51ef2e8c5ae3c46dd92648cb4 /op.c
parentc380484f921807e7089fef0177d59fe87df2f0ee (diff)
downloadperl-344462d3dde55465e709768c0d1dbfa2a8198aa5.tar.gz
two tweaks for clean build and test on Solaris
p4raw-id: //depot/perl@1877
Diffstat (limited to 'op.c')
-rw-r--r--op.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/op.c b/op.c
index 9b2284db94..b6e2499b42 100644
--- a/op.c
+++ b/op.c
@@ -131,6 +131,7 @@ pad_allocmy(char *name)
for (off = AvFILLp(PL_comppad_name); off > PL_comppad_name_floor; off--) {
if ((sv = svp[off])
&& sv != &PL_sv_undef
+ && (SvIVX(sv) == 999999999 || SvIVX(sv) == 0)
&& strEQ(name, SvPVX(sv)))
{
warner(WARN_UNSAFE,