shell32: Correctly compare result of SHFileOperation in UNIXFS copy/delete functions.

Sebastian Lackner sebastian at fds-team.de
Fri Jul 1 15:00:28 CDT 2016


From: Michael Müller <michael at fds-team.de>

Signed-off-by: Michael Müller <michael at fds-team.de>
Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
---

SHFileOperation returns zero on success.

 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 309c941..884fc0a 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;
-- 
2.8.0



More information about the wine-patches mailing list