free() -> switch_safe_free()

This commit is contained in:
Daniel Swarbrick 2011-01-03 21:39:36 +01:00
parent 66ce95a930
commit df090a2a6b
2 changed files with 13 additions and 13 deletions

View File

@ -121,7 +121,7 @@ static void do_rotate(cdr_fd_t *fd)
p = switch_mprintf("%s.%s", fd->path, date);
assert(p);
switch_file_rename(fd->path, p, globals.pool);
free(p);
switch_safe_free(p);
}
do_reopen(fd);
@ -317,12 +317,12 @@ static switch_status_t save_cdr(const char * const template, const char * const
*tp = 0;
tp = values;
values = nullValues;
free(tp);
switch_safe_free(tp);
sql = switch_mprintf("INSERT INTO %s (%s) VALUES (%s);", globals.db_table, columns, values);
assert(sql);
free(columns);
free(values);
switch_safe_free(columns);
switch_safe_free(values);
if (globals.debug) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Query: \"%s\"\n", sql);
@ -349,7 +349,7 @@ static switch_status_t save_cdr(const char * const template, const char * const
}
PQclear(res);
free(sql);
switch_safe_free(sql);
switch_mutex_unlock(globals.db_mutex);
@ -373,8 +373,8 @@ static switch_status_t save_cdr(const char * const template, const char * const
write_cdr(path, cdr);
}
free(path);
free(sql);
switch_safe_free(path);
switch_safe_free(sql);
return SWITCH_STATUS_FALSE;
}
@ -416,7 +416,7 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
switch_assert(buf);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "CHANNEL_DATA:\n%s\n", buf);
switch_event_destroy(&event);
free(buf);
switch_safe_free(buf);
}
}
@ -436,7 +436,7 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
save_cdr(template_str, expanded_vars);
if (expanded_vars != template_str) {
free(expanded_vars);
switch_safe_free(expanded_vars);
}
return status;

View File

@ -140,7 +140,7 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
switch_assert(buf);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "CHANNEL_DATA:\n%s\n", buf);
switch_event_destroy(&event);
free(buf);
switch_safe_free(buf);
}
}
@ -160,7 +160,7 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
sql = switch_mprintf("INSERT INTO %s VALUES (%s)", globals.db_table, expanded_vars);
assert(sql);
write_cdr(sql);
free(sql);
switch_safe_free(sql);
return status;
}
@ -264,8 +264,8 @@ static switch_status_t load_config(switch_memory_pool_t *pool)
/* Check if table exists (try SELECT FROM ...) and create table if query fails */
switch_cache_db_test_reactive(dbh, select_sql, NULL, create_sql);
free(select_sql);
free(create_sql);
switch_safe_free(select_sql);
switch_safe_free(create_sql);
switch_cache_db_release_db_handle(&dbh);
}