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/telecine.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'TOOLS/vf_dlopen/telecine.c') diff --git a/TOOLS/vf_dlopen/telecine.c b/TOOLS/vf_dlopen/telecine.c index b2ad303119..6c5eb4adc0 100644 --- a/TOOLS/vf_dlopen/telecine.c +++ b/TOOLS/vf_dlopen/telecine.c @@ -237,8 +237,7 @@ int vf_dlopen_getcontext(struct vf_dlopen_context *ctx, int argc, const char **a if (!a0[0] || a0[1] || !a1[0] || argc > 2) return -1; - tc_data_t *tc = malloc(sizeof(tc_data_t)); - memset(tc, 0, sizeof(*tc)); + tc_data_t *tc = calloc(1,sizeof(tc_data_t)); if (a0[0] == 't') tc->firstfield = 0; -- cgit v1.2.3