diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-09-24 01:20:00 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-09-24 01:20:00 +0000 |
commit | 7cf3a6a3b1c2b0edcdd2a882c2d730810d8f9910 (patch) | |
tree | 4f53014bca5b05d2371f42ebf8e610b4348c2d33 | |
parent | 5711aeb8cae9f3935cd6755e745b5ee1ab3aa4b6 (diff) | |
download | perl-7cf3a6a3b1c2b0edcdd2a882c2d730810d8f9910.tar.gz |
silence a spurious compiler warning in regcomp.c
p4raw-id: //depot/perl@31948
-rw-r--r-- | regcomp.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6831,6 +6831,7 @@ tryagain: case 0xCE: if (!LOC && FOLD) { U32 len,cp; + len=0; /* silence a spurious compiler warning */ if ((cp = what_len_TRICKYFOLD_safe(RExC_parse,RExC_end,UTF,len))) { *flagp |= HASWIDTH; /* could be SIMPLE too, but needs a handler in regexec.regrepeat */ RExC_parse+=len-1; /* we get one from nextchar() as well. :-( */ |