Changeset 65920 in webkit for trunk/JavaScriptCore/runtime/UString.cpp
- Timestamp:
- Aug 24, 2010, 12:00:56 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/UString.cpp
r65593 r65920 335 335 // have a good chance of being able to write the string into the 336 336 // buffer without reallocing (say, 1.5 x length). 337 if (length > numeric_limits<unsigned>::max() / 3) 338 return CString(); 337 339 Vector<char, 1024> bufferVector(length * 3); 338 340
Note:
See TracChangeset
for help on using the changeset viewer.