Commit 0d01212d authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

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

parent 37e6dc08
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment