Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-07-30 21:48:04 +0300
committerClément Bœsch <u@pkh.me>2017-07-30 21:48:57 +0300
commit797c232ef84d3886a25270cef8b630caf5a491cc (patch)
tree23eb8bf34a3a4bfdf66136a0df991c26e06f525e /libswscale
parent4158fba3cdb7c90f42071323f37f617e4f278414 (diff)
sws/tests/pixdesc_query: fix use of free() instead of av_free()
Fix CID 1415949
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/tests/pixdesc_query.c2
1 files changed, 1 insertions, 1 deletions
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;