From b05aa34f63f8d1a752cea9bf69d436e09c951bb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Fri, 1 Jul 2016 22:00:28 +0200 Subject: [PATCH] shell32: Correctly compare result of SHFileOperation in UNIXFS copy/delete functions. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Müller Signed-off-by: Sebastian Lackner Signed-off-by: Alexandre Julliard --- dlls/shell32/shfldr_unixfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/shfldr_unixfs.c b/dlls/shell32/shfldr_unixfs.c index 309c941cfa6..884fc0a86b6 100644 --- a/dlls/shell32/shfldr_unixfs.c +++ b/dlls/shell32/shfldr_unixfs.c @@ -847,7 +847,7 @@ static HRESULT UNIXFS_copy(LPCWSTR pwszDosSrc, LPCWSTR pwszDosDst) op.pFrom = pwszSrc; op.pTo = pwszDst; op.fFlags = FOF_ALLOWUNDO; - if (!SHFileOperationW(&op)) + if (SHFileOperationW(&op)) { WARN("SHFileOperationW failed\n"); res = E_FAIL; @@ -1981,7 +1981,7 @@ static HRESULT UNIXFS_delete_with_shfileop(UnixFolder *This, UINT cidl, const LP op.wFunc = FO_DELETE; op.pFrom = wszPathsList; op.fFlags = FOF_ALLOWUNDO; - if (!SHFileOperationW(&op)) + if (SHFileOperationW(&op)) { WARN("SHFileOperationW failed\n"); ret = E_FAIL;