1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avutil/sha512-test: fix memleak

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2016-05-13 16:53:44 -03:00
parent 7ee0e0ca1d
commit d8ef8b960a

View File

@@ -23,6 +23,7 @@
#include <stdio.h> #include <stdio.h>
#include "mem.h"
#include "sha512.h" #include "sha512.h"
int main(void) int main(void)
@@ -83,6 +84,7 @@ int main(void)
break; break;
} }
} }
av_free(ctx);
return 0; return 0;
} }