Browse Source

libavutil/opencl: fix potential null dereference

Fixes CID 1396840

Reviewed-by: Wei Gao <highgod0401@gmail.com>
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
tags/n3.4
Timo Rothenpieler 8 years ago
parent
commit
ef0c6d9b01
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/opencl.c

+ 1
- 1
libavutil/opencl.c View File

@@ -169,7 +169,7 @@ const char *av_opencl_errstr(cl_int status)
static void free_device_list(AVOpenCLDeviceList *device_list)
{
int i, j;
if (!device_list)
if (!device_list || !device_list->platform_node)
return;
for (i = 0; i < device_list->platform_num; i++) {
if (!device_list->platform_node[i])


Loading…
Cancel
Save