syncqt: remove dead code

Either the code in the try {} block

- doesn't throw, then the return within the try {} block exits the
  function, or it
- throws fileystem_error, then we rethrow in the catch, or it
- throws any other exception, then we leave the function by exception

In no case can control reach the trailing 'return {}'.

Found by Coverity.

Amends 7aecb189d544613ad13c7e7d1207bd7767225a71.

Pick-to: 6.7 6.6 6.5
Coverity-Id: 444466
Change-Id: I1c1bf752453076724c2fa9367ea5309e741d84ac
Reviewed-by:  Alexey Edelev <alexey.edelev@qt.io>
This commit is contained in:
Marc Mutz 2024-03-25 07:46:52 +01:00
parent 990746096e
commit 73d00d0547

View File

@ -151,7 +151,6 @@ std::filesystem::path normilizedPath(const std::string &path)
printFilesystemError(fserr, "Unable to normalize path");
throw;
}
return {};
}
bool createDirectories(const std::string &path, std::string_view errorMsg, bool *exists = nullptr)