mirror of https://git.ffmpeg.org/ffmpeg.git
movenc-test: add a missing va_end call
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
b8b21dee0f
commit
8df8f0c70c
|
@ -137,6 +137,7 @@ static void check_func(int value, int line, const char *msg, ...)
|
||||||
vprintf(msg, ap);
|
vprintf(msg, ap);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
check_faults++;
|
check_faults++;
|
||||||
|
va_end(ap);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#define check(value, ...) check_func(value, __LINE__, __VA_ARGS__)
|
#define check(value, ...) check_func(value, __LINE__, __VA_ARGS__)
|
||||||
|
|
Loading…
Reference in New Issue