25 Feb
2011
25 Feb
'11
5:19 p.m.
Module: wine Branch: master Commit: 0d01212dac9a5760325386ea058d92f4cdc20a28 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0d01212dac9a5760325386ea05... Author: Paul Vriens <Paul.Vriens.Wine(a)gmail.com> Date: Fri Feb 25 09:20:15 2011 +0100 msi: Add a missing va_end() (Coverity). --- dlls/msi/helpers.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/msi/helpers.c b/dlls/msi/helpers.c index d48dd69..ffbe58b 100644 --- a/dlls/msi/helpers.c +++ b/dlls/msi/helpers.c @@ -494,6 +494,8 @@ LPWSTR build_directory_name(DWORD count, ...) if( ((i+1)!=count) && dir[strlenW(dir)-1]!='\\') strcatW(dir, szBackSlash); } + va_end(va); + return dir; }