Changeset 214689 in webkit
- Timestamp:
- Mar 31, 2017, 3:05:22 PM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r214688 r214689 1 2017-03-31 Youenn Fablet <youenn@apple.com> 2 3 Fix memory leak in CreateSessionDescriptionObserver::OnSuccess 4 https://bugs.webkit.org/show_bug.cgi?id=170357 5 6 Reviewed by Geoffrey Garen. 7 8 No change of behavior. 9 10 * Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp: 11 (WebCore::LibWebRTCMediaEndpoint::createSessionDescriptionSucceeded): Adopting the raw pointer parameter. 12 1 13 2017-03-31 Fujii Hironori <Hironori.Fujii@sony.com> 2 14 -
trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp
r214627 r214689 704 704 } 705 705 706 void LibWebRTCMediaEndpoint::createSessionDescriptionSucceeded(webrtc::SessionDescriptionInterface* description) 707 { 706 void LibWebRTCMediaEndpoint::createSessionDescriptionSucceeded(webrtc::SessionDescriptionInterface* rawDescription) 707 { 708 std::unique_ptr<webrtc::SessionDescriptionInterface> description(rawDescription); 709 708 710 std::string sdp; 709 711 description->ToString(&sdp);
Note:
See TracChangeset
for help on using the changeset viewer.