This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
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
4158fba3cd
commit
797c232ef8
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
Write
Preview
Loading…
Cancel
Save