mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-12 20:27:19 +00:00
Wed May 13 12:14:18 CDT 2009 Pekka Pessi <first.last@nokia.com>
* nua_event_server.c: free temp strings Ignore-this: 18b592f7d6ae942a48cd117f7a6f3c31 Coverity issue. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13344 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
71f7c7ff11
commit
469bc4789a
@ -1 +1 @@
|
|||||||
Fri May 15 11:10:31 CDT 2009
|
Fri May 15 11:11:24 CDT 2009
|
||||||
|
@ -144,9 +144,13 @@ nea_event_t *nh_notifier_event(nua_handle_t *nh,
|
|||||||
char const *ct_s = NULL;
|
char const *ct_s = NULL;
|
||||||
|
|
||||||
if (ev == NULL) {
|
if (ev == NULL) {
|
||||||
char *o_type = su_strdup(home, event->o_type);
|
char *o_type, *o_subtype;
|
||||||
char *o_subtype = o_type ? strchr(o_type, '.') : NULL;
|
char *temp = NULL;
|
||||||
|
|
||||||
|
o_type = su_strdup(home, event->o_type);
|
||||||
|
if (o_type == NULL)
|
||||||
|
return NULL;
|
||||||
|
o_subtype = strchr(o_type, '.');
|
||||||
if (o_subtype)
|
if (o_subtype)
|
||||||
*o_subtype++ = '\0';
|
*o_subtype++ = '\0';
|
||||||
|
|
||||||
@ -162,7 +166,7 @@ nea_event_t *nh_notifier_event(nua_handle_t *nh,
|
|||||||
* types
|
* types
|
||||||
*/
|
*/
|
||||||
if (accept_s == NULL && accept)
|
if (accept_s == NULL && accept)
|
||||||
accept_s = sip_header_as_string(home, (sip_header_t *)accept);
|
accept_s = temp = sip_header_as_string(home, (sip_header_t *)accept);
|
||||||
if (accept_s == NULL && ct)
|
if (accept_s == NULL && ct)
|
||||||
accept_s = ct->c_type;
|
accept_s = ct->c_type;
|
||||||
if (accept_s == NULL && ct_s)
|
if (accept_s == NULL && ct_s)
|
||||||
@ -173,6 +177,9 @@ nea_event_t *nh_notifier_event(nua_handle_t *nh,
|
|||||||
o_type, o_subtype,
|
o_type, o_subtype,
|
||||||
ct ? ct->c_type : ct_s,
|
ct ? ct->c_type : ct_s,
|
||||||
accept_s);
|
accept_s);
|
||||||
|
|
||||||
|
su_free(home, temp);
|
||||||
|
su_free(home, o_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ev;
|
return ev;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user