Merged revisions 137933 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

........
r137933 | seanbright | 2008-08-14 14:47:28 -0400 (Thu, 14 Aug 2008) | 8 lines

Fix memory leak in cdr_sqlite3_custom.

(closes issue #13304)
Reported by: eliel
Patches:
      sqlite.patch uploaded by eliel (license 64)
      (Slightly modified by me)

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@137934 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Sean Bright 17 years ago
parent 586653b2c5
commit 2bc89083d9

@ -75,7 +75,7 @@ static int free_config(void);
static int load_column_config(const char *tmp) static int load_column_config(const char *tmp)
{ {
char *col = NULL; char *col = NULL;
char *cols = NULL; char *cols = NULL, *save = NULL;
char *escaped = NULL; char *escaped = NULL;
struct ast_str *column_string = NULL; struct ast_str *column_string = NULL;
@ -87,7 +87,7 @@ static int load_column_config(const char *tmp)
ast_log(LOG_ERROR, "Out of memory creating temporary buffer for column list for table '%s.'\n", table); ast_log(LOG_ERROR, "Out of memory creating temporary buffer for column list for table '%s.'\n", table);
return -1; return -1;
} }
if (!(cols = ast_strdup(tmp))) { if (!(save = cols = ast_strdup(tmp))) {
ast_log(LOG_ERROR, "Out of memory creating temporary buffer for column list for table '%s.'\n", table); ast_log(LOG_ERROR, "Out of memory creating temporary buffer for column list for table '%s.'\n", table);
ast_free(column_string); ast_free(column_string);
return -1; return -1;
@ -98,7 +98,7 @@ static int load_column_config(const char *tmp)
if (!escaped) { if (!escaped) {
ast_log(LOG_ERROR, "Out of memory creating entry for column '%s' in table '%s.'\n", col, table); ast_log(LOG_ERROR, "Out of memory creating entry for column '%s' in table '%s.'\n", col, table);
ast_free(column_string); ast_free(column_string);
ast_free(cols); ast_free(save);
return -1; return -1;
} }
if (!column_string->used) if (!column_string->used)
@ -110,11 +110,11 @@ static int load_column_config(const char *tmp)
if (!(columns = ast_strdup(column_string->str))) { if (!(columns = ast_strdup(column_string->str))) {
ast_log(LOG_ERROR, "Out of memory copying columns string for table '%s.'\n", table); ast_log(LOG_ERROR, "Out of memory copying columns string for table '%s.'\n", table);
ast_free(column_string); ast_free(column_string);
ast_free(cols); ast_free(save);
return -1; return -1;
} }
ast_free(column_string); ast_free(column_string);
ast_free(cols); ast_free(save);
return 0; return 0;
} }
@ -122,14 +122,14 @@ static int load_column_config(const char *tmp)
static int load_values_config(const char *tmp) static int load_values_config(const char *tmp)
{ {
char *val = NULL; char *val = NULL;
char *vals = NULL; char *vals = NULL, *save = NULL;
struct values *value = NULL; struct values *value = NULL;
if (ast_strlen_zero(tmp)) { if (ast_strlen_zero(tmp)) {
ast_log(LOG_WARNING, "Values not specified. Module not loaded.\n"); ast_log(LOG_WARNING, "Values not specified. Module not loaded.\n");
return -1; return -1;
} }
if (!(vals = ast_strdup(tmp))) { if (!(save = vals = ast_strdup(tmp))) {
ast_log(LOG_ERROR, "Out of memory creating temporary buffer for value '%s'\n", tmp); ast_log(LOG_ERROR, "Out of memory creating temporary buffer for value '%s'\n", tmp);
return -1; return -1;
} }
@ -139,14 +139,14 @@ static int load_values_config(const char *tmp)
value = ast_calloc(sizeof(char), sizeof(*value) + strlen(val) + 1); value = ast_calloc(sizeof(char), sizeof(*value) + strlen(val) + 1);
if (!value) { if (!value) {
ast_log(LOG_ERROR, "Out of memory creating entry for value '%s'\n", val); ast_log(LOG_ERROR, "Out of memory creating entry for value '%s'\n", val);
ast_free(vals); ast_free(save);
return -1; return -1;
} }
value->expression = (char *) value + sizeof(*value); value->expression = (char *) value + sizeof(*value);
ast_copy_string(value->expression, val, strlen(val) + 1); ast_copy_string(value->expression, val, strlen(val) + 1);
AST_LIST_INSERT_TAIL(&sql_values, value, list); AST_LIST_INSERT_TAIL(&sql_values, value, list);
} }
ast_free(vals); ast_free(save);
return 0; return 0;
} }

Loading…
Cancel
Save