diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-08-08 11:48:57 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2014-08-08 21:48:28 +0900 |
commit | e395aa09a49cd4adbcc4d9c64eecc76d08f47d40 (patch) | |
tree | 36f16db7bd2b5037612807107afb529b89f1471e /shell | |
parent | 4c0eb74307b613aefce4b181817cf137c4517c8a (diff) |
match va_start() with va_end()
Change-Id: I5c3c2570d6311f49da95bb80c0f9850f89970235
Diffstat (limited to 'shell')
-rw-r--r-- | shell/inc/internal/utilities.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/inc/internal/utilities.hxx b/shell/inc/internal/utilities.hxx index b11c9aa7d313..ccd537bec1f7 100644 --- a/shell/inc/internal/utilities.hxx +++ b/shell/inc/internal/utilities.hxx @@ -120,6 +120,7 @@ inline void OutputDebugStringFormat( LPCSTR pFormat, ... ) va_start( args, pFormat ); StringCchVPrintfA( buffer, sizeof(buffer), pFormat, args ); + va_end( args ); OutputDebugStringA( buffer ); } #else |