Wed May 13 12:04:15 CDT 2009 Pekka Pessi <first.last@nokia.com>

* nua_update_server_report(): fix bugs checking pending INVITEs in fake precondition handling
  Ignore-this: dc67f6287bf48aa8e2a39e2ece96821
  
  Coverity issue.



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13343 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-05-15 16:10:38 +00:00
parent af88f6c68d
commit 71f7c7ff11
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
Fri May 15 11:09:32 CDT 2009
Fri May 15 11:10:31 CDT 2009

View File

@ -3622,7 +3622,7 @@ int nua_update_server_report(nua_server_request_t *sr, tagi_t const *tags)
&& NH_PGET(nh, auto_alert)) {
nua_server_request_t *sri;
for (sri = nh->nh_ds->ds_sr; sri; sri = sr->sr_next)
for (sri = nh->nh_ds->ds_sr; sri; sri = sri->sr_next)
if (sri->sr_method == sip_method_invite &&
nua_server_request_is_pending(sri))
break;