shell32: Remove superfluous continue (coccinellery).

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-02-20 20:54:23 +01:00 committed by Alexandre Julliard
parent 4a9fe7a8a0
commit fd853c5e78

View file

@ -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);