Changeset 27733 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 12, 2007, 4:22:49 PM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r27730 r27733 1 2007-11-12 Darin Adler <[email protected]> 2 3 Reviewed by Sam. 4 5 - http://bugs.webkit.org/show_bug.cgi?id=15951 6 REGRESSION: assertion failure in regexp match() when running JS tests 7 8 Test: fast/js/regexp-many-brackets.html 9 10 * pcre/pcre_exec.cpp: (match): Added back accidentally-removed case for 11 the BRANUMBER opcode. 12 1 13 2007-11-12 Darin Adler <[email protected]> 2 14 -
trunk/JavaScriptCore/pcre/pcre_exec.cpp
r27730 r27733 447 447 RRETURN; 448 448 449 /* Skip over large extraction number data if encountered. */ 450 451 BEGIN_OPCODE(BRANUMBER): 452 frame->ecode += 3; 453 NEXT_OPCODE; 454 449 455 /* End of the pattern. */ 450 456 … … 1853 1859 /* Control never gets here */ 1854 1860 1855 BEGIN_OPCODE(BRANUMBER):1856 1861 BEGIN_OPCODE(CRMINPLUS): 1857 1862 BEGIN_OPCODE(CRMINQUERY):
Note:
See TracChangeset
for help on using the changeset viewer.