Commit 797c232e authored by Clément Bœsch's avatar Clément Bœsch

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

Fix CID 1415949
parent 4158fba3
...@@ -83,7 +83,7 @@ int main(void) ...@@ -83,7 +83,7 @@ int main(void)
printf(" %s\n", pix_fmts[j]); printf(" %s\n", pix_fmts[j]);
printf("\n"); printf("\n");
free(pix_fmts); av_free(pix_fmts);
} }
} }
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment