summaryrefslogtreecommitdiff
path: root/channels/chan_pjsip.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2015-01-30 16:47:50 +0000
committerMark Michelson <mmichelson@digium.com>2015-01-30 16:47:50 +0000
commit43dd42d8aeee1eff844f605544901016047348e2 (patch)
treeb22def97513a57f91e7d241f9a7adb497d617471 /channels/chan_pjsip.c
parentf7d23dfcc62c5491956570614365eb7ca39a7655 (diff)
Fix some memory leaks.
These memory leaks were found and fixed by John Hardin. I'm just committing them for him. ASTERISK-24736 #close Reported by Mark Michelson Review: https://reviewboard.asterisk.org/r/4389 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@431468 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_pjsip.c')
-rw-r--r--channels/chan_pjsip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels/chan_pjsip.c b/channels/chan_pjsip.c
index e580ef177..cd8e39623 100644
--- a/channels/chan_pjsip.c
+++ b/channels/chan_pjsip.c
@@ -2058,7 +2058,7 @@ static int chan_pjsip_incoming_request(struct ast_sip_session *session, struct p
static int call_pickup_incoming_request(struct ast_sip_session *session, pjsip_rx_data *rdata)
{
- struct ast_features_pickup_config *pickup_cfg = ast_get_chan_features_pickup_config(session->channel);
+ struct ast_features_pickup_config *pickup_cfg;
struct ast_channel *chan;
/* We don't care about reinvites */
@@ -2066,6 +2066,7 @@ static int call_pickup_incoming_request(struct ast_sip_session *session, pjsip_r
return 0;
}
+ pickup_cfg = ast_get_chan_features_pickup_config(session->channel);
if (!pickup_cfg) {
ast_log(LOG_ERROR, "Unable to retrieve pickup configuration options. Unable to detect call pickup extension.\n");
return 0;