shell32: Remove unused variable.

This commit is contained in:
Andrew Talbot 2012-11-21 21:17:03 +00:00 committed by Alexandre Julliard
parent 2b5ddbfe9a
commit cade59aab7
1 changed files with 1 additions and 2 deletions

View File

@ -410,7 +410,6 @@ static HTREEITEM InsertTreeViewItem( browse_info *info, IShellFolder * lpsf,
static void FillTreeView( browse_info *info, IShellFolder * lpsf, static void FillTreeView( browse_info *info, IShellFolder * lpsf,
LPITEMIDLIST pidl, HTREEITEM hParent, IEnumIDList* lpe) LPITEMIDLIST pidl, HTREEITEM hParent, IEnumIDList* lpe)
{ {
HTREEITEM hPrev = 0;
LPITEMIDLIST pidlTemp = 0; LPITEMIDLIST pidlTemp = 0;
ULONG ulFetched; ULONG ulFetched;
HRESULT hr; HRESULT hr;
@ -450,7 +449,7 @@ static void FillTreeView( browse_info *info, IShellFolder * lpsf,
} }
} }
if (!(hPrev = InsertTreeViewItem(info, lpsf, pidlTemp, pidl, pEnumIL, hParent))) if (!InsertTreeViewItem(info, lpsf, pidlTemp, pidl, pEnumIL, hParent))
goto done; goto done;
SHFree(pidlTemp); /* Finally, free the pidl that the shell gave us... */ SHFree(pidlTemp); /* Finally, free the pidl that the shell gave us... */
pidlTemp=NULL; pidlTemp=NULL;