mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[SHELL32]
* Remove an unused variable. svn path=/trunk/; revision=56562
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user