dbghelp: Fixed dead store (llvm/clang).

This commit is contained in:
Ricardo Filipe 2008-11-12 23:15:08 +00:00 committed by Alexandre Julliard
parent 1a12aace57
commit b5fcabb52c
1 changed files with 0 additions and 1 deletions

View File

@ -314,7 +314,6 @@ BOOL WINAPI SymInitializeW(HANDLE hProcess, PCWSTR UserSearchPath, BOOL fInvadeP
pcs->search_path = HeapReAlloc(GetProcessHeap(), 0, pcs->search_path, (size + 1 + len + 1) * sizeof(WCHAR));
pcs->search_path[size] = ';';
GetEnvironmentVariableW(alt_sym_path, pcs->search_path + size + 1, len);
size += 1 + len;
}
}