Bug 836349: Remove ICE state check from get*Description r=ekr

This commit is contained in:
Adam Roach [:abr] 2013-02-09 17:19:21 -05:00
parent 3e91e9050d
commit 2f480bdddb

View File

@ -1035,7 +1035,7 @@ PeerConnectionImpl::GetFingerprint(char** fingerprint)
NS_IMETHODIMP
PeerConnectionImpl::GetLocalDescription(char** aSDP)
{
PC_AUTO_ENTER_API_CALL(true);
PC_AUTO_ENTER_API_CALL_NO_CHECK();
MOZ_ASSERT(aSDP);
char* tmp = new char[mLocalSDP.size() + 1];
@ -1049,7 +1049,7 @@ PeerConnectionImpl::GetLocalDescription(char** aSDP)
NS_IMETHODIMP
PeerConnectionImpl::GetRemoteDescription(char** aSDP)
{
PC_AUTO_ENTER_API_CALL(true);
PC_AUTO_ENTER_API_CALL_NO_CHECK();
MOZ_ASSERT(aSDP);
char* tmp = new char[mRemoteSDP.size() + 1];