From 2dffcdcaaa175dbc2a770e278914318d336ea04d Mon Sep 17 00:00:00 2001 From: Francis Galiegue Date: Sat, 10 May 2008 01:45:51 +0200 Subject: [PATCH] log.c: fix missing va_end() :( Talk about stupid bugs :( Signed-off-by: Francis Galiegue --- log.c | 1 + 1 file changed, 1 insertion(+) diff --git a/log.c b/log.c index 8731b36..ceaf526 100644 --- a/log.c +++ b/log.c @@ -108,6 +108,7 @@ void acx_log_dump(int level, int what, const void *buf, ssize_t buflen, va_start(args, fmt); acx_log(level, what, fmt, args); + va_end(args); acx_dump_bytes(printk_level, buf, buflen); } /** -- 2.11.4.GIT