[FFmpeg-cvslog] movenc-test: add a missing va_end call
Ganesh Ajjanagadde
git at videolan.org
Thu Dec 17 14:52:18 CET 2015
ffmpeg | branch: master | Ganesh Ajjanagadde <gajjanagadde at gmail.com> | Fri Dec 4 01:03:26 2015 -0500| [8df8f0c70c9c2085d9ca186b7cbf43656c4412eb] | committer: Martin Storsjö
movenc-test: add a missing va_end call
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8df8f0c70c9c2085d9ca186b7cbf43656c4412eb
---
libavformat/movenc-test.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavformat/movenc-test.c b/libavformat/movenc-test.c
index 0c40b3a..6520aea 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__)
More information about the ffmpeg-cvslog
mailing list