This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
regcomp.c: Silence uninit compiler warning
[perl5.git]
/
regcomp.c
diff --git
a/regcomp.c
b/regcomp.c
index
68fcd2e
..
7a028fd
100644
(file)
--- a/
regcomp.c
+++ b/
regcomp.c
@@
-16132,7
+16132,7
@@
S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth,
if (optimizable && cp_list && ! invert) {
UV start, end;
U8 op = END; /* The optimzation node-type */
- int posix_class
;
+ int posix_class
= -1; /* Illegal value */
const char * cur_parse= RExC_parse;
invlist_iterinit(cp_list);