diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-12-04 01:03:26 -0500 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-12-07 11:11:30 +0200 |
commit | 8df8f0c70c9c2085d9ca186b7cbf43656c4412eb (patch) | |
tree | 844209094fdc170cf4c2e05155d6b52d28164757 | |
parent | b8b21dee0f0b4bcc1888067c497d6e838859d2cd (diff) | |
download | ffmpeg-8df8f0c70c9c2085d9ca186b7cbf43656c4412eb.tar.gz |
movenc-test: add a missing va_end call
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavformat/movenc-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/movenc-test.c b/libavformat/movenc-test.c index 0c40b3a9e0..6520aea94b 100644 --- a/libavformat/movenc-test.c +++ b/libavformat/movenc-test.c @@ -137,6 +137,7 @@ static void check_func(int value, int line, const char *msg, ...) vprintf(msg, ap); printf("\n"); check_faults++; + va_end(ap); } } #define check(value, ...) check_func(value, __LINE__, __VA_ARGS__) |