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
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e62cc96
)
Re: [PATCH] regexec.c: goto crossing initialization
author
Jarkko Hietaniemi
<jhi@iki.fi>
Mon, 9 Oct 2006 12:47:11 +0000
(15:47 +0300)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Mon, 9 Oct 2006 10:02:08 +0000
(10:02 +0000)
Message-ID: <
452A1A9F
.4080103@iki.fi>
p4raw-id: //depot/perl@28968
regexec.c
patch
|
blob
|
blame
|
history
diff --git
a/regexec.c
b/regexec.c
index
2743c53
..
6660b60
100644
(file)
--- a/
regexec.c
+++ b/
regexec.c
@@
-3294,11
+3294,12
@@
S_regmatch(pTHX_ const regmatch_info *reginfo, regnode *prog)
case NREFFL:
{
char *s;
- char type
= OP(scan)
;
+ char type;
PL_reg_flags |= RF_tainted;
/* FALL THROUGH */
case NREF:
case NREFF:
+ type = OP(scan);
{
SV *sv_dat=(SV*)rex->data->data[ ARG( scan ) ];
I32 *nums=(I32*)SvPVX(sv_dat);