Skip to content

Commit

Permalink
resip/recon: SipXRemoteParticipant.cxx: ensure localCodecs and remote…
Browse files Browse the repository at this point in the history
…Codecs initialized to NULL
  • Loading branch information
dpocock committed May 16, 2021
1 parent 0ed0771 commit a22eab3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resip/recon/SipXRemoteParticipant.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -815,8 +815,8 @@ SipXRemoteParticipant::adjustRTPStreams(bool sendingOffer)
unsigned int remoteRtcpPort=0;
std::shared_ptr<sdpcontainer::Sdp> localSdp(SdpHelperResip::createSdpFromResipSdp(sendingOffer ? *getDialogSet().getProposedSdp() : *getLocalSdp()));
std::shared_ptr<sdpcontainer::Sdp> remoteSdp(sendingOffer ? 0 : SdpHelperResip::createSdpFromResipSdp(*getRemoteSdp()));
const sdpcontainer::SdpMediaLine::CodecList* localCodecs;
const sdpcontainer::SdpMediaLine::CodecList* remoteCodecs;
const sdpcontainer::SdpMediaLine::CodecList* localCodecs = 0;
const sdpcontainer::SdpMediaLine::CodecList* remoteCodecs = 0;
bool supportedCryptoSuite = false;
bool supportedFingerprint = false;

Expand Down

0 comments on commit a22eab3

Please sign in to comment.