diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-03-18 14:13:16 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-03-18 14:13:16 +0000 |
commit | a1afd1046e98b52e81720705c71449e6a5438e69 (patch) | |
tree | c26a8861ed6414802699122a3ea322078cacb192 /pp.c | |
parent | 57185c71ec028665c77b9bdf20d9fb51d8458287 (diff) | |
download | perl-a1afd1046e98b52e81720705c71449e6a5438e69.tar.gz |
make ~$x give warning is $x isn't initialised.
Also add test for uninitialised warning in & op.
p4raw-id: //depot/perl@22525
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2377,6 +2377,7 @@ PP(pp_complement) register I32 anum; STRLEN len; + (void)SvPV_nomg(sv,len); sv_setsv_nomg(TARG, sv); tmps = (U8*)SvPV_force(TARG, len); anum = len; |