| Index: talk/app/webrtc/webrtcsdp.cc
|
| diff --git a/talk/app/webrtc/webrtcsdp.cc b/talk/app/webrtc/webrtcsdp.cc
|
| index e287e909162ec6c6a70e5ce454a2fb1a8d2f0403..f5fb7f78e3334edd7f320d6f3e89f49b25132c4f 100644
|
| --- a/talk/app/webrtc/webrtcsdp.cc
|
| +++ b/talk/app/webrtc/webrtcsdp.cc
|
| @@ -2207,13 +2207,10 @@ bool ParseMediaDescription(const std::string& message,
|
|
|
| // Make a temporary TransportDescription based on |session_td|.
|
| // Some of this gets overwritten by ParseContent.
|
| - TransportDescription transport(session_td.transport_options,
|
| - session_td.ice_ufrag,
|
| - session_td.ice_pwd,
|
| - session_td.ice_mode,
|
| - session_td.connection_role,
|
| - session_td.identity_fingerprint.get(),
|
| - Candidates());
|
| + TransportDescription transport(
|
| + session_td.transport_options, session_td.ice_ufrag, session_td.ice_pwd,
|
| + session_td.ice_mode, session_td.connection_role,
|
| + session_td.identity_fingerprint.get());
|
|
|
| rtc::scoped_ptr<MediaContentDescription> content;
|
| std::string content_name;
|
|
|