mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +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)
|
||||
{
|
||||
CComHeapPtr<ITEMIDLIST> lpFSPidl(ILCreateFromPathW(lpszPath));
|
||||
if (!(LPITEMIDLIST)lpFSPidl)
|
||||
if (!lpFSPidl)
|
||||
{
|
||||
ERR("Failed to create pidl from path\n");
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue