use calloc instead of malloc+memset
[project/firewall3.git] / utils.c
diff --git a/utils.c b/utils.c
index 8ed52be..4f30955 100644 (file)
--- a/utils.c
+++ b/utils.c
@@ -225,7 +225,7 @@ __fw3_command_pipe(bool silent, const char *command, ...)
                return false;
 
        argn = 2;
-       args = malloc(argn * sizeof(arg));
+       args = calloc(argn, sizeof(arg));
 
        if (!args)
                return false;