Changeset 165252 in webkit
- Timestamp:
- Mar 6, 2014, 11:20:51 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r165251 r165252 1 2014-03-06 Andreas Kling <akling@apple.com> 2 3 WebCoreResourceHandleAsOperationQueueDelegate over-retains NSURLRequest. 4 <https://webkit.org/b/129862> 5 6 Don't retain the pointer before assigning it to a RetainPtr, since that 7 will cause the object to leak. 8 9 Reviewed by Alexey Proskuryakov. 10 11 * platform/network/mac/WebCoreResourceHandleAsOperationQueueDelegate.mm: 12 (-[WebCoreResourceHandleAsOperationQueueDelegate continueWillSendRequest:]): 13 1 14 2014-03-06 Dan Bernstein <mitz@apple.com> 2 15 -
trunk/Source/WebCore/platform/network/mac/WebCoreResourceHandleAsOperationQueueDelegate.mm
r163905 r165252 78 78 - (void)continueWillSendRequest:(NSURLRequest *)newRequest 79 79 { 80 m_requestResult = [newRequest retain];80 m_requestResult = newRequest; 81 81 dispatch_semaphore_signal(m_semaphore); 82 82 }
Note:
See TracChangeset
for help on using the changeset viewer.