Changeset 164443 in webkit for trunk/Source/JavaScriptCore/API/ObjcRuntimeExtras.h
- Timestamp:
- Feb 20, 2014, 12:57:20 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/ObjcRuntimeExtras.h
r163876 r164443 194 194 if (*position == '"') { 195 195 const char* begin = position + 1; 196 const char* protocolPosition = index(begin, '<');197 const char* endOfType = index(begin, '"');196 const char* protocolPosition = strchr(begin, '<'); 197 const char* endOfType = strchr(begin, '"'); 198 198 position = endOfType + 1; 199 199
Note:
See TracChangeset
for help on using the changeset viewer.