Changeset 248085 in webkit
- Timestamp:
- Jul 31, 2019, 5:12:18 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/WKContentViewInteraction.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r248047 r248085 1 2019-07-31 Dean Jackson <dino@apple.com> 2 3 WKImagePreviewViewController not being autoreleased 4 https://bugs.webkit.org/show_bug.cgi?id=200325 5 <rdar://problem/53788214> 6 7 Reviewed by Wenson Hsieh. 8 9 Wenson noticed I wasn't autoreleasing the WKImagePreviewViewController. 10 11 * UIProcess/ios/WKContentViewInteraction.mm: 12 (-[WKContentView continueContextMenuInteraction:]): 13 1 14 2019-07-31 Chris Dumez <cdumez@apple.com> 2 15 -
trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm
r248039 r248085 7994 7994 return nil; 7995 7995 7996 return [[ WKImagePreviewViewController alloc] initWithCGImage:cgImage defaultActions:nil elementInfo:elementInfo.get()];7996 return [[[WKImagePreviewViewController alloc] initWithCGImage:cgImage defaultActions:nil elementInfo:elementInfo.get()] autorelease]; 7997 7997 }; 7998 7998
Note:
See TracChangeset
for help on using the changeset viewer.