Changeset 205740 in webkit
- Timestamp:
- Sep 9, 2016, 5:54:12 AM (9 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r205694 r205740 1 2016-09-09 Mark Lam <mark.lam@apple.com> 2 3 Gardening: fixing a few JSC test failures. 4 https://bugs.webkit.org/show_bug.cgi?id=161760 5 6 Not reviewed. 7 8 Without this fix, the following tests will crash on a null dereference of isGCThread. 9 stress/slow-path-generator-updating-current-node-dfg.js.misc-ftl-no-cjit 10 stress/unshift-array-storage.js.misc-ftl-no-cjit 11 12 * wtf/MainThread.cpp: 13 (WTF::mayBeGCThread): 14 1 15 2016-09-08 Yusuke Suzuki <utatane.tea@gmail.com> 2 16 -
trunk/Source/WTF/wtf/MainThread.cpp
r205683 r205740 219 219 bool mayBeGCThread() 220 220 { 221 return isGCThread ->isSet() && **isGCThread;221 return isGCThread && isGCThread->isSet() && **isGCThread; 222 222 } 223 223
Note:
See TracChangeset
for help on using the changeset viewer.