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:
parent
2cce196210
commit
8f21b352c2
|
@ -1475,10 +1475,10 @@ static HRESULT WINAPI ShellFolder2_GetDetailsOf(IShellFolder2* iface,
|
||||||
LPCITEMIDLIST pidl, UINT iColumn, SHELLDETAILS *psd)
|
LPCITEMIDLIST pidl, UINT iColumn, SHELLDETAILS *psd)
|
||||||
{
|
{
|
||||||
UnixFolder *This = impl_from_IShellFolder2(iface);
|
UnixFolder *This = impl_from_IShellFolder2(iface);
|
||||||
HRESULT hr = E_FAIL;
|
|
||||||
struct passwd *pPasswd;
|
struct passwd *pPasswd;
|
||||||
struct group *pGroup;
|
struct group *pGroup;
|
||||||
struct stat statItem;
|
struct stat statItem;
|
||||||
|
HRESULT hr = S_OK;
|
||||||
|
|
||||||
static const shvheader unixfs_header[SHELLVIEWCOLUMNS] = {
|
static const shvheader unixfs_header[SHELLVIEWCOLUMNS] = {
|
||||||
{IDS_SHV_COLUMN1, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
|
{IDS_SHV_COLUMN1, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
|
||||||
|
|
Loading…
Reference in New Issue