shell32: Fix return value of GetDetailsOf() for unixfs folder.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2017-01-25 22:51:32 +03:00 committed by Alexandre Julliard
parent 2cce196210
commit 8f21b352c2
1 changed files with 1 additions and 1 deletions

View File

@ -1475,10 +1475,10 @@ static HRESULT WINAPI ShellFolder2_GetDetailsOf(IShellFolder2* iface,
LPCITEMIDLIST pidl, UINT iColumn, SHELLDETAILS *psd)
{
UnixFolder *This = impl_from_IShellFolder2(iface);
HRESULT hr = E_FAIL;
struct passwd *pPasswd;
struct group *pGroup;
struct stat statItem;
HRESULT hr = S_OK;
static const shvheader unixfs_header[SHELLVIEWCOLUMNS] = {
{IDS_SHV_COLUMN1, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},