[Libreoffice-commits] core.git: shell/inc
Takeshi Abe
tabe at fixedpoint.jp
Fri Aug 8 05:49:13 PDT 2014
shell/inc/internal/utilities.hxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit e395aa09a49cd4adbcc4d9c64eecc76d08f47d40
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date: Fri Aug 8 11:48:57 2014 +0900
match va_start() with va_end()
Change-Id: I5c3c2570d6311f49da95bb80c0f9850f89970235
diff --git a/shell/inc/internal/utilities.hxx b/shell/inc/internal/utilities.hxx
index b11c9aa..ccd537b 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
More information about the Libreoffice-commits
mailing list