[SHELL32]

* Remove an unused variable.

svn path=/trunk/; revision=56562
This commit is contained in:
Amine Khaldi
2012-05-12 15:05:02 +00:00
parent 784c0d6568
commit 92daea0588
+1 -2
View File
@@ -396,7 +396,6 @@ static HTREEITEM InsertTreeViewItem( browse_info *info, IShellFolder * lpsf,
static void FillTreeView( browse_info *info, IShellFolder * lpsf,
LPITEMIDLIST pidl, HTREEITEM hParent, IEnumIDList* lpe)
{
HTREEITEM hPrev = 0;
LPITEMIDLIST pidlTemp = 0;
ULONG ulFetched;
HRESULT hr;
@@ -436,7 +435,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;
SHFree(pidlTemp); /* Finally, free the pidl that the shell gave us... */
pidlTemp=NULL;