Changeset 11918 in webkit for trunk/JavaScriptCore/pcre/pcre_compile.c
- Timestamp:
- Jan 6, 2006, 2:43:44 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_compile.c
r10495 r11918 1357 1357 #if PCRE_UTF16 1358 1358 1359 static inline BOOL strequal(const pcre_uchar *str1, int len, const char *str2)1359 static __inline BOOL strequal(const pcre_uchar *str1, int len, const char *str2) 1360 1360 { 1361 1361 int i; … … 4894 4894 ++ptr; 4895 4895 } 4896 int i; 4897 for (i = 0; i < _pcre_utf8_table1_size; i++) 4898 if (c <= _pcre_utf8_table1[i]) break; 4899 length += i; 4900 lastitemlength += i; 4896 4897 { 4898 int i; 4899 for (i = 0; i < _pcre_utf8_table1_size; i++) 4900 if (c <= _pcre_utf8_table1[i]) break; 4901 length += i; 4902 lastitemlength += i; 4903 } 4901 4904 } 4902 4905 #else
Note:
See TracChangeset
for help on using the changeset viewer.