projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a3ed7b
)
Fix to make sure we don't hangup a call when getting a RLC without sending REL. ...
author
Matthew Fredrickson
<creslin@digium.com>
Tue, 11 Sep 2007 23:07:49 +0000
(23:07 +0000)
committer
Matthew Fredrickson
<creslin@digium.com>
Tue, 11 Sep 2007 23:07:49 +0000
(23:07 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82273
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_zap.c
patch
|
blob
|
history
diff --git
a/channels/chan_zap.c
b/channels/chan_zap.c
index
f7efa06
..
edcc0e5
100644
(file)
--- a/
channels/chan_zap.c
+++ b/
channels/chan_zap.c
@@
-8903,7
+8903,10
@@
static void *ss7_linkset(void *data)
} else {
p = linkset->pvts[chanpos];
ast_mutex_lock(&p->lock);
- p->ss7call = NULL;
+ if (p->alreadyhungup)
+ p->ss7call = NULL;
+ else
+ ast_log(LOG_NOTICE, "Received RLC out and we haven't sent REL. Ignoring.\n");
ast_mutex_unlock(&p->lock);
}
break;