Skip to content
Snippets Groups Projects
Commit c8c4ea9b authored by Mark Michelson's avatar Mark Michelson
Browse files

Add missing argument to ast_calloc calls.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@242092 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent fccf2778
Branches
Tags
No related merge requests found
......@@ -237,7 +237,7 @@ static struct ast_ha *ast_duplicate_ha(struct ast_ha *original)
{
struct ast_ha *new_ha;
if ((new_ha = ast_calloc(sizeof(*new_ha)))) {
if ((new_ha = ast_calloc(1, sizeof(*new_ha)))) {
/* Copy from original to new object */
ast_copy_ha(original, new_ha);
}
......@@ -284,7 +284,7 @@ struct ast_ha *ast_append_ha(const char *sense, const char *stuff, struct ast_ha
path = path->next;
}
if (!(ha = ast_calloc(sizeof(*ha)))) {
if (!(ha = ast_calloc(1, sizeof(*ha)))) {
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment