avcodec/bsf: Fix av_bsf_list_free()

Negate null check
Fixes CID1396248

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-12-26 23:45:53 +01:00
parent bd83c295fc
commit 762bf6f4af
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ void av_bsf_list_free(AVBSFList **lst)
{
int i;
if (*lst)
if (!*lst)
return;
for (i = 0; i < (*lst)->nb_bsfs; ++i)