shell32: Remove unused variable.
This commit is contained in:
parent
2b5ddbfe9a
commit
cade59aab7
|
@ -410,7 +410,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;
|
||||
|
@ -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;
|
||||
SHFree(pidlTemp); /* Finally, free the pidl that the shell gave us... */
|
||||
pidlTemp=NULL;
|
||||
|
|
Loading…
Reference in New Issue