summaryrefslogtreecommitdiff
path: root/cmdutils_opencl.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmdutils_opencl.c')
-rw-r--r--cmdutils_opencl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils_opencl.c b/cmdutils_opencl.c
index 0fa8cc0ada..3dfd156195 100644
--- a/cmdutils_opencl.c
+++ b/cmdutils_opencl.c
@@ -224,7 +224,7 @@ int opt_opencl_bench(void *optctx, const char *opt, const char *arg)
av_log(NULL, AV_LOG_ERROR, "No OpenCL device detected!\n");
return AVERROR(EINVAL);
}
- if (!(devices = av_malloc(sizeof(OpenCLDeviceBenchmark) * nb_devices))) {
+ if (!(devices = av_malloc_array(nb_devices, sizeof(OpenCLDeviceBenchmark)))) {
av_log(NULL, AV_LOG_ERROR, "Could not allocate buffer\n");
return AVERROR(ENOMEM);
}