Changeset 7558 in webkit for trunk/JavaScriptCore/kjs/function.cpp
- Timestamp:
- Sep 14, 2004, 3:14:01 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.cpp
r7507 r7558 721 721 sprintf(tmp, "%%u%04X", u); 722 722 s = UString(tmp); 723 } else if ( strchr(do_not_escape, (char)u)) {723 } else if (u != 0 && strchr(do_not_escape, (char)u)) { 724 724 s = UString(c, 1); 725 725 } else {
Note:
See TracChangeset
for help on using the changeset viewer.