summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2015-01-12 19:10:24 +0100
committerThomas Jarosch <tomj@simonv.com>2015-01-12 19:10:24 +0100
commit1589b28afca9a8193258ad73a8847ceb952d3e0f (patch)
tree9d3d0c3a1242e2a31ddf8dd4219dda67ee649770
parent8d0bdc7dec6bb2a36e685915584d63551f370254 (diff)
downloadrockbox-1589b28.tar.gz
rockbox-1589b28.zip
ARM unwinder: Add missing va_end() call.
Detected by cppcheck, patch submitted upstream. Change-Id: Ieeec9d2e7e2c22d64c94936958f5a4ff02d3548b
-rw-r--r--lib/unwarminder/unwarm.c1
1 files changed, 1 insertions, 0 deletions
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