ffmpeg | branch: master | James Almer <[email protected]> | Wed Feb 3 19:25:45 2016 -0300| [0711c5bfb8b496f0e4054548ec6db97d13a1d6f5] | committer: James Almer
avutil/aes_crt: free AVAESCTR struct properly Reviewed-by: Andreas Cadhalpun <[email protected]> Signed-off-by: James Almer <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0711c5bfb8b496f0e4054548ec6db97d13a1d6f5 --- libavutil/aes_ctr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/aes_ctr.c b/libavutil/aes_ctr.c index 2343543..e9c568f 100644 --- a/libavutil/aes_ctr.c +++ b/libavutil/aes_ctr.c @@ -79,7 +79,7 @@ void av_aes_ctr_free(struct AVAESCTR *a) { if (a) { av_freep(&a->aes); - av_freep(a); + av_free(a); } } _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
