Revision: 1170
http://vcs.pcre.org/viewvc?view=rev&revision=1170
Author: ph10
Date: 2012-10-24 15:43:56 +0100 (Wed, 24 Oct 2012)
Log Message:
-----------
Fix typo (duplicate label) when --disable-stack-for-recursion is set.
Modified Paths:
--------------
code/trunk/pcre_exec.c
Modified: code/trunk/pcre_exec.c
===================================================================
--- code/trunk/pcre_exec.c 2012-10-24 14:42:50 UTC (rev 1169)
+++ code/trunk/pcre_exec.c 2012-10-24 14:43:56 UTC (rev 1170)
@@ -294,7 +294,7 @@
RM31, RM32, RM33, RM34, RM35, RM36, RM37, RM38, RM39, RM40,
RM41, RM42, RM43, RM44, RM45, RM46, RM47, RM48, RM49, RM50,
RM51, RM52, RM53, RM54, RM55, RM56, RM57, RM58, RM59, RM60,
- RM61, RM62, RM63, RM64, RM65, RM66 };
+ RM61, RM62, RM63, RM64, RM65, RM66, RM67 };
/* These versions of the macros use the stack, as normal. There are debugging
versions and production versions. Note that the "rw" argument of RMATCH isn't
@@ -4956,7 +4956,7 @@
for (fi = min;; fi++)
{
const pcre_uint32 *cp;
- RMATCH(eptr, ecode, offset_top, md, eptrb, RM62);
+ RMATCH(eptr, ecode, offset_top, md, eptrb, RM67);
if (rrc != MATCH_NOMATCH) RRETURN(rrc);
if (fi >= max) RRETURN(MATCH_NOMATCH);
if (eptr >= md->end_subject)