Module: sems Branch: master Commit: e6ca612bba97b53fa3840600426c5526877f531b URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=e6ca612bba97b53fa3840600426c5526877f531b
Author: Václav Kubart <[email protected]> Committer: Václav Kubart <[email protected]> Date: Mon Oct 28 09:21:31 2013 +0100 sbc b/f: avoid to terminate a call leg twice if reconnecting call legs --- apps/sbc/CallLeg.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/apps/sbc/CallLeg.cpp b/apps/sbc/CallLeg.cpp index b0eb388..752ff75 100644 --- a/apps/sbc/CallLeg.cpp +++ b/apps/sbc/CallLeg.cpp @@ -520,7 +520,7 @@ void CallLeg::onB2BReconnect(ReconnectLegEvent* ev) ev->markAsProcessed(); // release old signaling and media session - terminateOtherLeg(); + clear_other(); resumeHeld(false); clearRtpReceiverRelay(); _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
