Fix small but big typo in REGISTER/SUBSCRIBE early RTP closing (bug #3673)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5088 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Mark Spencer 21 years ago
parent 8295c77e9c
commit c021ec56e3

@ -8387,7 +8387,7 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
p->rtp = NULL; p->rtp = NULL;
} }
if (p->vrtp) { if (p->vrtp) {
ast_rtp_destroy(p->rtp); ast_rtp_destroy(p->vrtp);
p->vrtp = NULL; p->vrtp = NULL;
} }
transmit_response(p, "200 OK", req); 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; p->rtp = NULL;
} }
if (p->vrtp) { if (p->vrtp) {
ast_rtp_destroy(p->rtp); ast_rtp_destroy(p->vrtp);
p->vrtp = NULL; p->vrtp = NULL;
} }
/* Destroy the session, but keep us around for just a bit in case they don't /* Destroy the session, but keep us around for just a bit in case they don't

Loading…
Cancel
Save