Changeset 165719 in webkit
- Timestamp:
- Mar 16, 2014, 11:15:51 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/OpaqueJSString.cpp
r165703 r165719 72 72 return Identifier(Identifier::EmptyIdentifier); 73 73 74 return Identifier(vm, m_string); 74 if (m_string.is8Bit()) 75 return Identifier(vm, m_string.characters8(), m_string.length()); 76 77 return Identifier(vm, m_string.characters16(), m_string.length()); 75 78 } 76 79 -
trunk/Source/JavaScriptCore/ChangeLog
r165714 r165719 1 2014-03-16 Andreas Kling <akling@apple.com> 2 3 REGRESSION(r165703): JSC tests crashing in StringImpl::destroy(). 4 <https://webkit.org/b/130304> 5 6 Reviewed by Anders Carlsson. 7 8 Unreviewed, restoring the old behavior of OpaqueJSString::identifier() 9 that doesn't put a potentially unwanted string into the Identifier table. 10 11 * API/OpaqueJSString.cpp: 12 (OpaqueJSString::identifier): 13 1 14 2014-03-16 Brian Burg <bburg@apple.com> 2 15
Note:
See TracChangeset
for help on using the changeset viewer.