From bca4219dd0c8c1896a19ed5544b40656f5078b1b Mon Sep 17 00:00:00 2001 From: Bruno George de Moraes Date: Thu, 4 Sep 2014 20:44:51 -0300 Subject: malloc+memset(0) to calloc Signed-off-by: wm4 --- TOOLS/vf_dlopen/rectangle.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'TOOLS/vf_dlopen/rectangle.c') diff --git a/TOOLS/vf_dlopen/rectangle.c b/TOOLS/vf_dlopen/rectangle.c index 0aaa360598..f0827c974b 100644 --- a/TOOLS/vf_dlopen/rectangle.c +++ b/TOOLS/vf_dlopen/rectangle.c @@ -348,8 +348,7 @@ int vf_dlopen_getcontext(struct vf_dlopen_context *ctx, int argc, const char **a { "yuv420p", "yuv420p" }, { NULL, NULL } }; - privdata *priv = malloc(sizeof(privdata)); - memset(priv, 0, sizeof(*priv)); + privdata *priv = calloc(1,sizeof(privdata)); priv->step = 8; if(argc >= 1) priv->w = atoi(argv[0]); -- cgit v1.2.3