summaryrefslogtreecommitdiffstats
path: root/TOOLS/vf_dlopen/framestep.c
diff options
context:
space:
mode:
authorBruno George de Moraes <bruno.gm0@gmail.com>2014-09-04 20:44:51 -0300
committerwm4 <wm4@nowhere>2014-09-05 01:59:11 +0200
commitbca4219dd0c8c1896a19ed5544b40656f5078b1b (patch)
treed01865e2652ca101d6691cb75cae0542f2485bb0 /TOOLS/vf_dlopen/framestep.c
parenta7d737a6986446ba921690cc985468534ed8caab (diff)
downloadmpv-bca4219dd0c8c1896a19ed5544b40656f5078b1b.tar.bz2
mpv-bca4219dd0c8c1896a19ed5544b40656f5078b1b.tar.xz
malloc+memset(0) to calloc
Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'TOOLS/vf_dlopen/framestep.c')
-rw-r--r--TOOLS/vf_dlopen/framestep.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/TOOLS/vf_dlopen/framestep.c b/TOOLS/vf_dlopen/framestep.c
index 4e25f295ca..11c5afe349 100644
--- a/TOOLS/vf_dlopen/framestep.c
+++ b/TOOLS/vf_dlopen/framestep.c
@@ -90,8 +90,7 @@ int vf_dlopen_getcontext(struct vf_dlopen_context *ctx, int argc, const char **a
if (argc != 1 && argc != 2)
return -1;
- framestep_data_t *framestep = malloc(sizeof(framestep_data_t));
- memset(framestep, 0, sizeof(*framestep));
+ framestep_data_t *framestep = calloc(1,sizeof(framestep_data_t));
framestep->step = atoi(argv[0]);
framestep->pos = (argc >= 2) ? atoi(argv[1]) : 0;