Changeset 28841 in webkit for trunk/JavaScriptCore/pcre/pcre_exec.cpp
- Timestamp:
- Dec 18, 2007, 4:34:00 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_exec.cpp
r28833 r28841 2003 2003 /* When the result is no match, advance the pointer to the next character 2004 2004 and continue. */ 2005 if (returnCode == false) {2005 if (returnCode == 0) { 2006 2006 startMatch++; 2007 2007 continue; 2008 2008 } 2009 2009 2010 if (returnCode != true) {2010 if (returnCode != 1) { 2011 2011 ASSERT(returnCode == JSRegExpErrorHitLimit || returnCode == JSRegExpErrorNoMemory); 2012 2012 DPRINTF((">>>> error: returning %d\n", rc));
Note:
See TracChangeset
for help on using the changeset viewer.