From 1589b28afca9a8193258ad73a8847ceb952d3e0f Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Mon, 12 Jan 2015 19:10:24 +0100 Subject: ARM unwinder: Add missing va_end() call. Detected by cppcheck, patch submitted upstream. Change-Id: Ieeec9d2e7e2c22d64c94936958f5a4ff02d3548b --- lib/unwarminder/unwarm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/unwarminder/unwarm.c b/lib/unwarminder/unwarm.c index 99f6a12ccb..699ca50689 100644 --- a/lib/unwarminder/unwarm.c +++ b/lib/unwarminder/unwarm.c @@ -64,6 +64,7 @@ void UnwPrintf(const char *format, ...) va_start( args, format ); vprintf(format, args ); + va_end(args); } #endif -- cgit v1.2.3