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:
8295c77
)
Fix small but big typo in REGISTER/SUBSCRIBE early RTP closing (bug #3673)
author
Mark Spencer
<markster@digium.com>
Sat, 26 Feb 2005 16:29:15 +0000
(16:29 +0000)
committer
Mark Spencer
<markster@digium.com>
Sat, 26 Feb 2005 16:29:15 +0000
(16:29 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5088
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_sip.c
patch
|
blob
|
history
diff --git
a/channels/chan_sip.c
b/channels/chan_sip.c
index
97c9e35
..
83edfca
100755
(executable)
--- a/
channels/chan_sip.c
+++ b/
channels/chan_sip.c
@@
-8387,7
+8387,7
@@
static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
p->rtp = NULL;
}
if (p->vrtp) {
- ast_rtp_destroy(p->rtp);
+ ast_rtp_destroy(p->vrtp);
p->vrtp = NULL;
}
transmit_response(p, "200 OK", req);
@@
-8423,7
+8423,7
@@
static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
p->rtp = NULL;
}
if (p->vrtp) {
- ast_rtp_destroy(p->rtp);
+ ast_rtp_destroy(p->vrtp);
p->vrtp = NULL;
}
/* Destroy the session, but keep us around for just a bit in case they don't