diff options
author | Max Kellermann <max@duempel.org> | 2013-09-12 10:02:11 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-12 10:17:41 +0200 |
commit | 1ee6a78cb727561e75a5d60135bb0cd7956f70b0 (patch) | |
tree | 1b04fc472927341f818d3d571456fb495dd43ece /src/fs/Path.cxx | |
parent | bf4ee48efad262c650b6b1a5b61ebe837d59f910 (diff) |
Path: add FromUTF8() overload that returns an Error
Diffstat (limited to 'src/fs/Path.cxx')
-rw-r--r-- | src/fs/Path.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/fs/Path.cxx b/src/fs/Path.cxx index c063025c8..f04823661 100644 --- a/src/fs/Path.cxx +++ b/src/fs/Path.cxx @@ -21,6 +21,7 @@ #include "fs/Path.hxx" #include "ConfigGlobal.hxx" #include "system/FatalError.hxx" +#include "util/Error.hxx" #include "util/Domain.hxx" #include "gcc.h" @@ -89,6 +90,18 @@ Path Path::FromUTF8(const char *path_utf8) return Path(Donate(), p); } +Path +Path::FromUTF8(const char *path_utf8, Error &error) +{ + Path path = FromUTF8(path_utf8); + if (path.IsNull()) + error.Format(path_domain, + "Failed to convert to file system charset: %s", + path_utf8); + + return path; +} + gcc_pure static bool IsSupportedCharset(const char *charset) |