Skip to content

Commit

Permalink
pp_match(): remove some superfluous braces
Browse files Browse the repository at this point in the history
  • Loading branch information
iabyn committed Jul 31, 2013
1 parent b1422d6 commit 985afbc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pp_hot.c
Original file line number Diff line number Diff line change
Expand Up @@ -1420,22 +1420,20 @@ PP(pp_match)
s = truebase;

play_it_again:
if (global) {
if (global)
s = truebase + curpos;
}

if (!CALLREGEXEC(rx, (char*)s, (char *)strend, (char*)truebase,
had_zerolen, TARG, NULL, r_flags))
goto nope;

PL_curpm = pm;
if (dynpm->op_pmflags & PMf_ONCE) {
if (dynpm->op_pmflags & PMf_ONCE)
#ifdef USE_ITHREADS
SvREADONLY_on(PL_regex_pad[dynpm->op_pmoffset]);
#else
dynpm->op_pmflags |= PMf_USED;
#endif
}

if (rxtainted)
RX_MATCH_TAINTED_on(rx);
Expand Down

0 comments on commit 985afbc

Please sign in to comment.