From 980d6be5350ca1cccc11b00ad2dc44707fa280e8 Mon Sep 17 00:00:00 2001 From: "turaj@webrtc.org" Date: Thu, 10 May 2012 22:57:21 +0000 Subject: [PATCH] Revert 2212 - Bug fix Review URL: https://webrtc-codereview.appspot.com/576009 A series of CL:s by Patrik W. is breaking the auto-test. It started with CL 2211, but the later CL:s seems dependent on another. So I decided to go in reverse order and revert all of them. TBR=pwestin@webrtc.org Review URL: https://webrtc-codereview.appspot.com/575009 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2225 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/modules/rtp_rtcp/source/rtp_rtcp_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/rtp_rtcp/source/rtp_rtcp_impl.cc b/src/modules/rtp_rtcp/source/rtp_rtcp_impl.cc index bbd4e298be..8edae06ce3 100644 --- a/src/modules/rtp_rtcp/source/rtp_rtcp_impl.cc +++ b/src/modules/rtp_rtcp/source/rtp_rtcp_impl.cc @@ -43,7 +43,7 @@ RtpRtcp* RtpRtcp::CreateRtpRtcp(const RtpRtcp::Configuration& configuration) { RtpRtcp::Configuration configuration_copy; memcpy(&configuration_copy, &configuration_copy, sizeof(RtpRtcp::Configuration)); - configuration_copy.clock = ModuleRTPUtility::GetSystemClock(); + ModuleRTPUtility::GetSystemClock(); ModuleRtpRtcpImpl* rtp_rtcp_instance = new ModuleRtpRtcpImpl(configuration_copy); rtp_rtcp_instance->OwnsClock();