Module: wine Branch: master Commit: b5fcabb52c6ed8e4ba05e9eee4ba3c7850729772 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b5fcabb52c6ed8e4ba05e9eee4...
Author: Ricardo Filipe ricardo_barbano@hotmail.com Date: Wed Nov 12 23:15:08 2008 +0000
dbghelp: Fixed dead store (llvm/clang).
---
dlls/dbghelp/dbghelp.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/dlls/dbghelp/dbghelp.c b/dlls/dbghelp/dbghelp.c index fba22d0..1bfc338 100644 --- a/dlls/dbghelp/dbghelp.c +++ b/dlls/dbghelp/dbghelp.c @@ -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; } }