mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-27 16:07:15 -07:00
fix some references to the owner of a private structure that may not be present
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@148754 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+4
-2
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user