[PATCH] shell32: Remove superfluous continue (coccinellery)

Michael Stefaniuc mstefani at winehq.org
Wed Feb 20 13:54:23 CST 2019


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/shell32/xdg.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/dlls/shell32/xdg.c b/dlls/shell32/xdg.c
index 781902a238..0351699912 100644
--- a/dlls/shell32/xdg.c
+++ b/dlls/shell32/xdg.c
@@ -939,14 +939,10 @@ HRESULT XDG_UserDirLookup(const char * const *xdg_dirs, const unsigned int num_d
 
         /* Parse the value */
         hr = parse_config2(p, home_dir, &out[idx]);
-        if (FAILED(hr))
+        if (hr == E_OUTOFMEMORY)
         {
-            if (hr == E_OUTOFMEMORY)
-            {
-                fclose(file);
-                goto xdg_user_dir_lookup_error;
-            }
-            continue;
+            fclose(file);
+            goto xdg_user_dir_lookup_error;
         }
     }
     fclose (file);
-- 
2.20.1




More information about the wine-devel mailing list