avutil/sha-test: fix memleak

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

View File

@ -18,6 +18,7 @@
#include <stdio.h>
#include "mem.h"
#include "sha.h"
int main(void)
@ -68,6 +69,7 @@ int main(void)
break;
}
}
av_free(ctx);
return 0;
}