git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
movenc-test: add a missing va_end call
[ffmpeg.git]
/
libavformat
/
movenc-test.c
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__)