diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-24 13:02:53 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-24 13:02:53 +0000 |
commit | 9ede7db1c666d50c17ae5d9e90be0155517a4c0c (patch) | |
tree | b386f78befa824d72f37bdd944dfce81a5220059 /regcomp.c | |
parent | 0ebc6274038e153e550e59b772cf72a406234aaa (diff) | |
download | perl-9ede7db1c666d50c17ae5d9e90be0155517a4c0c.tar.gz |
Using uninitialized (and wrong) variables is not good.
p4raw-id: //depot/perl@14851
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3206,7 +3206,7 @@ tryagain: } else { reguni(pRExC_state, ender, s, &unilen); - if (numlen > 0) { + if (unilen > 0) { s += unilen; len += unilen; } @@ -3243,7 +3243,7 @@ tryagain: } else { reguni(pRExC_state, ender, s, &unilen); - if (numlen > 0) { + if (unilen > 0) { s += unilen; len += unilen; } |