Changeset 57879 in webkit for trunk/JavaScriptCore/API/JSContextRef.cpp
- Timestamp:
- Apr 20, 2010, 1:30:12 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSContextRef.cpp
r57853 r57879 124 124 JSGlobalData& globalData = exec->globalData(); 125 125 JSGlobalObject* dgo = exec->dynamicGlobalObject(); 126 IdentifierTable* savedIdentifierTable = setCurrentIdentifierTable(globalData.identifierTable);126 IdentifierTable* savedIdentifierTable = wtfThreadData().setCurrentIdentifierTable(globalData.identifierTable); 127 127 128 128 // One reference is held by JSGlobalObject, another added by JSGlobalContextRetain(). … … 148 148 globalData.deref(); 149 149 150 setCurrentIdentifierTable(savedIdentifierTable);150 wtfThreadData().setCurrentIdentifierTable(savedIdentifierTable); 151 151 } 152 152
Note:
See TracChangeset
for help on using the changeset viewer.