Commit ded403c4 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

version: Remove dead assignments (Clang).

parent 7dea6427
...@@ -1199,7 +1199,6 @@ DWORD WINAPI VerFindFileA( ...@@ -1199,7 +1199,6 @@ DWORD WINAPI VerFindFileA(
GetSystemDirectoryA(systemDir, sizeof(systemDir)); GetSystemDirectoryA(systemDir, sizeof(systemDir));
curDir = ""; curDir = "";
destDir = "";
if(flags & VFFF_ISSHAREDFILE) if(flags & VFFF_ISSHAREDFILE)
{ {
...@@ -1296,7 +1295,6 @@ DWORD WINAPI VerFindFileW( DWORD flags,LPCWSTR lpszFilename,LPCWSTR lpszWinDir, ...@@ -1296,7 +1295,6 @@ DWORD WINAPI VerFindFileW( DWORD flags,LPCWSTR lpszFilename,LPCWSTR lpszWinDir,
GetSystemDirectoryW(systemDir, sizeof(systemDir)/sizeof(WCHAR)); GetSystemDirectoryW(systemDir, sizeof(systemDir)/sizeof(WCHAR));
curDir = &emptyW; curDir = &emptyW;
destDir = &emptyW;
if(flags & VFFF_ISSHAREDFILE) if(flags & VFFF_ISSHAREDFILE)
{ {
......
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