Tue May 12 11:38:36 CDT 2009 Pekka Pessi <first.last@nokia.com>

* auth_common.c::auth_get_params(): added missing va_end()
  Ignore-this: 43f33c9e069f4b80c35bab09bec7f925
  
  Coverity issue.



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13323 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-05-15 15:49:34 +00:00
parent ca2c46d4bf
commit 25fe8c3a4b
2 changed files with 4 additions and 2 deletions

View File

@ -1 +1 @@
Fri May 15 10:47:06 CDT 2009
Fri May 15 10:49:06 CDT 2009

View File

@ -125,8 +125,10 @@ issize_t auth_get_params(su_home_t *home,
else
value = su_strdup(home, p + len);
if (value == NULL)
if (value == NULL) {
va_end(ap);
return -1;
}
break;
}