dect
/
asterisk
Archived
13
0
Fork 0

fix some references to the owner of a private structure that may not be present

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@148754 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
kpfleming 2008-10-14 11:31:40 +00:00
parent 1a25e06e1f
commit fa6386a333
1 changed files with 4 additions and 2 deletions

View File

@ -18891,7 +18891,7 @@ static int handle_request_bye(struct sip_pvt *p, struct sip_request *req)
/* Get RTCP quality before end of call */
if (p->do_history || p->owner) {
struct ast_channel *bridge = ast_bridged_channel(p->owner);
struct ast_channel *bridge = p->owner ? ast_bridged_channel(p->owner) : NULL;
char *videoqos, *textqos;
if (p->rtp) {
@ -18912,7 +18912,9 @@ static int handle_request_bye(struct sip_pvt *p, struct sip_request *req)
append_history(p, "RTCPaudioRTT", "Quality:%s", audioqos_rtt);
}
ast_rtp_set_vars(p->owner, p->rtp);
if (p->owner) {
ast_rtp_set_vars(p->owner, p->rtp);
}
}
if (bridge) {