Changeset 18525 in webkit for trunk/JavaScriptCore/pcre/pcre_compile.c
- Timestamp:
- Jan 2, 2007, 9:22:59 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_compile.c
r18517 r18525 3956 3956 const uschar *codestart; 3957 3957 const pcre_uchar *ptr; 3958 const pcre_uchar const* patternEnd; 3958 3959 compile_data compile_block; 3959 3960 int brastack[BRASTACK_SIZE]; … … 4046 4047 4047 4048 ptr = (const pcre_uchar *)(pattern - 1); 4048 const pcre_uchar const*patternEnd = (const pcre_uchar *)(pattern + patternLength);4049 patternEnd = (const pcre_uchar *)(pattern + patternLength); 4049 4050 4050 4051 while (++ptr < patternEnd) 4051 4052 { 4052 c = *ptr;4053 4054 4053 int min, max; 4055 4054 int class_optcount; … … 4057 4056 int duplength; 4058 4057 4058 c = *ptr; 4059 4059 4060 /* If we are inside a \Q...\E sequence, all chars are literal */ 4060 4061
Note:
See TracChangeset
for help on using the changeset viewer.