Commit e3997294 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

ver.dll16: filelen is an in/out parameter (Coverity).

parent 8595d702
......@@ -522,7 +522,8 @@ DWORD WINAPI VerInstallFile16( UINT16 flags,
LPSTR lpszSrcDir, LPSTR lpszDestDir, LPSTR lpszCurDir,
LPSTR lpszTmpFile, UINT16 *lpwTmpFileLen )
{
UINT filelen;
UINT filelen = *lpwTmpFileLen;
DWORD retv = VerInstallFileA( flags, lpszSrcFilename, lpszDestFilename,
lpszSrcDir, lpszDestDir, lpszCurDir,
lpszTmpFile, &filelen);
......
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