aboutsummaryrefslogtreecommitdiffstats
path: root/main/cdr.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-06 21:20:11 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-06 21:20:11 +0000
commiteb5d461ed4688cafadc76bebf329a2fae454dc12 (patch)
tree5503cb153c9de46c07e3a0a521cc996926ed375b /main/cdr.c
parent125558c76fd4870a9133e4974cce6410c89a3593 (diff)
Issue 9869 - replace malloc and memset with ast_calloc, and other coding guidelines changes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@67864 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/cdr.c')
-rw-r--r--main/cdr.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/main/cdr.c b/main/cdr.c
index 7e3ab5bf9..76b5cfc1c 100644
--- a/main/cdr.c
+++ b/main/cdr.c
@@ -157,7 +157,7 @@ void ast_cdr_unregister(const char *name)
AST_LIST_REMOVE_CURRENT(&be_list, list);
if (option_verbose > 1)
ast_verbose(VERBOSE_PREFIX_2 "Unregistered '%s' CDR backend\n", name);
- free(i);
+ ast_free(i);
break;
}
}
@@ -440,7 +440,7 @@ void ast_cdr_free(struct ast_cdr *cdr)
ast_log(LOG_NOTICE, "CDR on channel '%s' lacks start\n", chan);
ast_cdr_free_vars(cdr, 0);
- free(cdr);
+ ast_free(cdr);
cdr = next;
}
}
@@ -452,14 +452,15 @@ void ast_cdr_discard(struct ast_cdr *cdr)
struct ast_cdr *next = cdr->next;
ast_cdr_free_vars(cdr, 0);
- free(cdr);
+ ast_free(cdr);
cdr = next;
}
}
struct ast_cdr *ast_cdr_alloc(void)
{
- struct ast_cdr *x = ast_calloc(1, sizeof(struct ast_cdr));
+ struct ast_cdr *x;
+ x = ast_calloc(1, sizeof(*x));
if (!x)
ast_log(LOG_ERROR,"Allocation Failure for a CDR!\n");
return x;
@@ -1024,7 +1025,7 @@ static void *do_batch_backend_process(void *data)
ast_cdr_free(batchitem->cdr);
processeditem = batchitem;
batchitem = batchitem->next;
- free(processeditem);
+ ast_free(processeditem);
}
return NULL;