From 797c232ef84d3886a25270cef8b630caf5a491cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Sun, 30 Jul 2017 20:48:04 +0200 Subject: [PATCH] sws/tests/pixdesc_query: fix use of free() instead of av_free() Fix CID 1415949 --- libswscale/tests/pixdesc_query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/tests/pixdesc_query.c b/libswscale/tests/pixdesc_query.c index 417f481cd0..a5585c4314 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;