msi: Add a missing va_end() (Coverity).

This commit is contained in:
Paul Vriens 2011-02-25 09:20:15 +01:00 committed by Alexandre Julliard
parent 37e6dc0846
commit 0d01212dac
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}