projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c02d432
)
Silence a gcc warning, spotted by Tels
Rafael Garcia-Suarez [Fri, 5 Jan 2007 23:15:38 +0000 (23:15 +0000)]
p4raw-id: //depot/perl@29703
regcomp.c
patch
|
blob
|
blame
|
history
diff --git
a/regcomp.c
b/regcomp.c
index
ad78544
..
e26621d
100644
(file)
--- a/
regcomp.c
+++ b/
regcomp.c
@@
-4666,7
+4666,7
@@
SV*
Perl_reg_numbered_buff_get(pTHX_ I32 paren, const REGEXP * const rx, SV* usesv, U32 flags)
{
char *s = NULL;
- I32 i;
+ I32 i = 0;
I32 s1, t1;
SV *sv = usesv ? usesv : newSVpvs("");