mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
ARM unwinder: Add missing va_end() call.
Detected by cppcheck, patch submitted upstream. Change-Id: Ieeec9d2e7e2c22d64c94936958f5a4ff02d3548b
This commit is contained in:
parent
8d0bdc7dec
commit
1589b28afc
1 changed files with 1 additions and 0 deletions
|
@ -64,6 +64,7 @@ void UnwPrintf(const char *format, ...)
|
||||||
|
|
||||||
va_start( args, format );
|
va_start( args, format );
|
||||||
vprintf(format, args );
|
vprintf(format, args );
|
||||||
|
va_end(args);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue