summaryrefslogtreecommitdiff
path: root/addons/chan_ooh323.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2011-02-14 07:01:46 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2011-02-14 07:01:46 +0000
commitc0e33b03c35b9ef27aea6c5716a5e44f0e1636e7 (patch)
tree62e3bb4a7e72cab5b9b9167bd4dfb9945a559658 /addons/chan_ooh323.c
parent7800a1c330aef709812bd1f5c85210f68c05877a (diff)
Making trunk compile again.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@307752 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'addons/chan_ooh323.c')
-rw-r--r--addons/chan_ooh323.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/addons/chan_ooh323.c b/addons/chan_ooh323.c
index 1a520f4db..2df7c2299 100644
--- a/addons/chan_ooh323.c
+++ b/addons/chan_ooh323.c
@@ -1236,17 +1236,18 @@ static int ooh323_indicate(struct ast_channel *ast, int condition, const void *d
}
break;
case AST_CONTROL_RINGING:
- if (ast->_state == AST_STATE_RING || ast->_state == AST_STATE_RINGING) {
- if (!p->alertsent) {
- if (gH323Debug) {
- ast_debug(1, "Sending manual ringback for %s, res = %d\n",
- callToken,
- ooManualRingback(callToken));
- } else {
- ooManualRingback(callToken);
+ if (ast->_state == AST_STATE_RING || ast->_state == AST_STATE_RINGING) {
+ if (!p->alertsent) {
+ if (gH323Debug) {
+ ast_debug(1, "Sending manual ringback for %s, res = %d\n",
+ callToken,
+ ooManualRingback(callToken));
+ } else {
+ ooManualRingback(callToken);
+ }
+ p->alertsent = 1;
}
- p->alertsent = 1;
- }
+ }
break;
case AST_CONTROL_SRCUPDATE:
ast_rtp_instance_update_source(p->rtp);
@@ -4095,7 +4096,7 @@ static int ooh323_set_udptl_peer(struct ast_channel *chan, struct ast_udptl *udp
memset(&p->udptlredirip, 0, sizeof(p->udptlredirip));
ast_mutex_unlock(&p->lock);
- free(callToken);
+ /* free(callToken); */
return 0;
}