summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2004-03-18 19:02:32 +0000
committerDave Mitchell <davem@fdisolutions.com>2004-03-18 19:02:32 +0000
commit5ab053b06800167d2bc083dd4186b23d7cb95fce (patch)
treee5b3c250b55f0f0545e88c579e43dab99d93881c /pp.c
parente0eb806da65d9c202cc8d19c8a8cd7a0cbeb7857 (diff)
downloadperl-5ab053b06800167d2bc083dd4186b23d7cb95fce.tar.gz
add code comment for change 22525
p4raw-id: //depot/perl@22531
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 866d55459e..d3434c37d6 100644
--- a/pp.c
+++ b/pp.c
@@ -2377,7 +2377,7 @@ PP(pp_complement)
register I32 anum;
STRLEN len;
- (void)SvPV_nomg(sv,len);
+ (void)SvPV_nomg(sv,len); /* force check for uninit var */
sv_setsv_nomg(TARG, sv);
tmps = (U8*)SvPV_force(TARG, len);
anum = len;