[FFmpeg-devel] [PATCH 03/11] libavutil/opencl: fix potentiall nul dereference

Timo Rothenpieler timo at rothenpieler.org
Sun Aug 27 22:10:00 EEST 2017


Am 14.08.2017 um 03:47 schrieb Wei Gao:
> 2017-06-11 22:05 GMT+08:00 Timo Rothenpieler <timo at rothenpieler.org>:
> 
>> Fixes CID 1396840
>> ---
>>   libavutil/opencl.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/libavutil/opencl.c b/libavutil/opencl.c
>> index af35770e06..202756516b 100644
>> --- a/libavutil/opencl.c
>> +++ b/libavutil/opencl.c
>> @@ -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])
>> --
>> 2.13.0
>>
> Looks good to me, thanks.
> 

applied

-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 3994 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20170827/d84f8818/attachment.bin>


More information about the ffmpeg-devel mailing list