mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[SHELLFIND] Remove unnecessary cast
This commit is contained in:
parent
0eee3ed368
commit
7ac9fd9f51
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ CFindFolder::CFindFolder() :
|
||||||
static LPITEMIDLIST _ILCreate(LPCWSTR lpszPath)
|
static LPITEMIDLIST _ILCreate(LPCWSTR lpszPath)
|
||||||
{
|
{
|
||||||
CComHeapPtr<ITEMIDLIST> lpFSPidl(ILCreateFromPathW(lpszPath));
|
CComHeapPtr<ITEMIDLIST> lpFSPidl(ILCreateFromPathW(lpszPath));
|
||||||
if (!(LPITEMIDLIST)lpFSPidl)
|
if (!lpFSPidl)
|
||||||
{
|
{
|
||||||
ERR("Failed to create pidl from path\n");
|
ERR("Failed to create pidl from path\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue