Changeset 167537 in webkit
- Timestamp:
- Apr 19, 2014, 10:46:07 AM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WebKit2/ChangeLog ¶
r167536 r167537 1 2014-04-19 Dan Bernstein <mitz@apple.com> 2 3 [Cocoa] Crash in -[WKWebProcessPlugInHitTestResult nodeHandle] when nodeHandle() is null 4 https://bugs.webkit.org/show_bug.cgi?id=131888 5 6 Reviewed by Jon Honeycutt. 7 8 * WebProcess/InjectedBundle/API/Cocoa/WKWebProcessPlugInHitTestResult.mm: 9 (-[WKWebProcessPlugInHitTestResult nodeHandle]): Added a null check. 10 1 11 2014-04-19 Simon Fraser <simon.fraser@apple.com> 2 12 -
TabularUnified trunk/Source/WebKit2/WebProcess/InjectedBundle/API/Cocoa/WKWebProcessPlugInHitTestResult.mm ¶
r160530 r167537 46 46 { 47 47 RefPtr<InjectedBundleNodeHandle> nodeHandle = _hitTestResult->nodeHandle(); 48 return [wrapper(*nodeHandle.release().leakRef()) autorelease];48 return nodeHandle ? [wrapper(*nodeHandle.release().leakRef()) autorelease] : nil; 49 49 } 50 50
Note:
See TracChangeset
for help on using the changeset viewer.