]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Add missing argument to ast_calloc calls.
authorMark Michelson <mmichelson@digium.com>
Thu, 21 Jan 2010 22:37:55 +0000 (22:37 +0000)
committerMark Michelson <mmichelson@digium.com>
Thu, 21 Jan 2010 22:37:55 +0000 (22:37 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@242092 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/acl.c

index e272ef81882117374a02c2f14e3e5dc62bcbd8cc..3c01fb65b6e866b475bfd2223d6897ad5ab1f836 100644 (file)
@@ -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;
        }