From: Badalyan Vyacheslav Date: Thu, 8 Dec 2016 18:54:06 +0000 (+0000) Subject: chan_sip: Delete unneeded check X-Git-Tag: 14.3.0-rc1~75^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec7d86c90f126e57301c90ee5bd26002e4063c16;p=thirdparty%2Fasterisk.git chan_sip: Delete unneeded check P is always true. We check it before Change-Id: Iee61cda002a9f61aee26b9f66c5f9b59e3389efb --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 2f86bdf175..8fa98d2c9e 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -6892,10 +6892,9 @@ static int update_call_counter(struct sip_pvt *fup, int event) ast_log(LOG_ERROR, "update_call_counter(%s, %d) called with no event!\n", name, event); } - if (p) { - ast_devstate_changed(AST_DEVICE_UNKNOWN, AST_DEVSTATE_CACHABLE, "SIP/%s", p->name); - sip_unref_peer(p, "update_call_counter: sip_unref_peer from call counter"); - } + ast_devstate_changed(AST_DEVICE_UNKNOWN, AST_DEVSTATE_CACHABLE, "SIP/%s", p->name); + sip_unref_peer(p, "update_call_counter: sip_unref_peer from call counter"); + return 0; }