Changeset 54789 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Feb 15, 2010, 1:03:45 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r52028 r54789 50 50 { 51 51 UString result = str; 52 intpos = 0;53 while ((pos = result.find('\"', pos)) >= 0) {52 unsigned pos = 0; 53 while ((pos = result.find('\"', pos)) != UString::NotFound) { 54 54 result = makeString(result.substr(0, pos), "\"\\\"\"", result.substr(pos + 1)); 55 55 pos += 4;
Note:
See TracChangeset
for help on using the changeset viewer.