Only decrease inringing count if above zero.

(issue #13238)
Reported by: kowalma


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@174710 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.2
Joshua Colp 17 years ago
parent 23939e54f3
commit 6304c09149

@ -5314,7 +5314,9 @@ static int update_call_counter(struct sip_pvt *fup, int event)
sip_pvt_lock(fup);
ao2_lock(p);
if (ast_test_flag(&fup->flags[0], SIP_INC_RINGING)) {
(*inringing)--;
if (*inringing > 0) {
(*inringing)--;
}
ast_clear_flag(&fup->flags[0], SIP_INC_RINGING);
}
ao2_unlock(p);

Loading…
Cancel
Save