git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
b8b21de
)
movenc-test: add a missing va_end call
author
Ganesh Ajjanagadde
<gajjanagadde@gmail.com>
Fri, 4 Dec 2015 06:03:26 +0000
(
01:03
-0500)
committer
Martin Storsjö
<martin@martin.st>
Mon, 7 Dec 2015 09:11:30 +0000
(11:11 +0200)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/movenc-test.c
patch
|
blob
|
history
diff --git
a/libavformat/movenc-test.c
b/libavformat/movenc-test.c
index
0c40b3a
..
6520aea
100644
(file)
--- 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__)