Browse Source

sws/tests/pixdesc_query: fix use of free() instead of av_free()

Fix CID 1415949
tags/n3.4
Clément Bœsch 7 years ago
parent
commit
797c232ef8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libswscale/tests/pixdesc_query.c

+ 1
- 1
libswscale/tests/pixdesc_query.c View File

@@ -83,7 +83,7 @@ int main(void)
printf(" %s\n", pix_fmts[j]);
printf("\n");

free(pix_fmts);
av_free(pix_fmts);
}
}
return 0;


Loading…
Cancel
Save