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
This commit is contained in:
turaj@webrtc.org 2012-05-10 22:57:21 +00:00
parent c2fe91256c
commit 980d6be535

View File

@ -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();