diff options
author | Clément Bœsch <u@pkh.me> | 2017-07-30 20:48:04 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-07-30 20:48:57 +0200 |
commit | 797c232ef84d3886a25270cef8b630caf5a491cc (patch) | |
tree | 23eb8bf34a3a4bfdf66136a0df991c26e06f525e /libswscale/tests | |
parent | 4158fba3cdb7c90f42071323f37f617e4f278414 (diff) | |
download | ffmpeg-streaming-797c232ef84d3886a25270cef8b630caf5a491cc.zip ffmpeg-streaming-797c232ef84d3886a25270cef8b630caf5a491cc.tar.gz |
sws/tests/pixdesc_query: fix use of free() instead of av_free()
Fix CID 1415949
Diffstat (limited to 'libswscale/tests')
-rw-r--r-- | libswscale/tests/pixdesc_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/tests/pixdesc_query.c b/libswscale/tests/pixdesc_query.c index 417f481..a5585c4 100644 --- a/libswscale/tests/pixdesc_query.c +++ b/libswscale/tests/pixdesc_query.c @@ -83,7 +83,7 @@ int main(void) printf(" %s\n", pix_fmts[j]); printf("\n"); - free(pix_fmts); + av_free(pix_fmts); } } return 0; |