Commit fd853c5e authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

shell32: Remove superfluous continue (coccinellery).

parent 4a9fe7a8
...@@ -939,14 +939,10 @@ HRESULT XDG_UserDirLookup(const char * const *xdg_dirs, const unsigned int num_d ...@@ -939,14 +939,10 @@ HRESULT XDG_UserDirLookup(const char * const *xdg_dirs, const unsigned int num_d
/* Parse the value */ /* Parse the value */
hr = parse_config2(p, home_dir, &out[idx]); 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;
fclose(file);
goto xdg_user_dir_lookup_error;
}
continue;
} }
} }
fclose (file); fclose (file);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment