mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/ripemd-test: fix memleak
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
f92d2f3292
commit
64dbfcc415
|
@ -21,6 +21,7 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "mem.h"
|
||||
#include "ripemd.h"
|
||||
|
||||
int main(void)
|
||||
|
@ -73,6 +74,7 @@ int main(void)
|
|||
break;
|
||||
}
|
||||
}
|
||||
av_free(ctx);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue