Changeset 179874 in webkit
- Timestamp:
- Feb 10, 2015, 11:11:44 AM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/API/Cocoa/WKBrowsingContextController.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r179870 r179874 1 2015-02-10 Joseph Pecoraro <pecoraro@apple.com> 2 3 [Cocoa] NSData over retain in WKBrowsingContextController loadData 4 https://bugs.webkit.org/show_bug.cgi?id=141437 5 6 Reviewed by Anders Carlsson. 7 8 * UIProcess/API/Cocoa/WKBrowsingContextController.mm: 9 (-[WKBrowsingContextController loadData:MIMEType:textEncodingName:baseURL:userData:]): 10 API::Data::createWithoutCopying will automatically do the retaining / releasing for us. 11 1 12 2015-02-10 Zhuo Li <zachli@apple.com> 2 13 -
trunk/Source/WebKit2/UIProcess/API/Cocoa/WKBrowsingContextController.mm
r177760 r179874 241 241 if (data) { 242 242 // FIXME: This should copy the data. 243 [data retain];244 243 apiData = API::Data::createWithoutCopying(data); 245 244 }
Note:
See TracChangeset
for help on using the changeset viewer.