Module: wine Branch: master Commit: b03f8771637f69f9b74aa24dd6881c2b9db20bf3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b03f8771637f69f9b74aa24dd6...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Tue Feb 1 15:12:17 2011 +0100
shdocvw: Initialize variable (Coverity).
---
dlls/shdocvw/iexplore.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c index 3b652cb..f8d74ac 100644 --- a/dlls/shdocvw/iexplore.c +++ b/dlls/shdocvw/iexplore.c @@ -173,7 +173,7 @@ static void add_favs_to_menu(HMENU favmenu, HMENU menu, LPCWSTR dir) HANDLE findhandle; WIN32_FIND_DATAW finddata; IUniformResourceLocatorW* urlobj; - IPersistFile* urlfile; + IPersistFile* urlfile = NULL; HRESULT res;
lstrcpyW(path, dir);