diff options
author | B. Stack <bgstack15@gmail.com> | 2022-09-07 14:49:22 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-09-07 14:49:22 -0400 |
commit | 47c88c433d17948fab1d8e1d76121a72fe5938cb (patch) | |
tree | fbc1dea58a6b28f1af4a9e9b2bc8e3e1d23b2103 /zen/resolve_path.cpp | |
parent | Merge branch 'b11.23' into 'master' (diff) | |
download | FreeFileSync-47c88c433d17948fab1d8e1d76121a72fe5938cb.tar.gz FreeFileSync-47c88c433d17948fab1d8e1d76121a72fe5938cb.tar.bz2 FreeFileSync-47c88c433d17948fab1d8e1d76121a72fe5938cb.zip |
add upstream 11.24
Diffstat (limited to 'zen/resolve_path.cpp')
-rw-r--r-- | zen/resolve_path.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/zen/resolve_path.cpp b/zen/resolve_path.cpp index 357dab6a..99e2f6c6 100644 --- a/zen/resolve_path.cpp +++ b/zen/resolve_path.cpp @@ -9,7 +9,7 @@ #include "thread.h" #include "file_access.h" -#include <zen/sys_info.h> + #include <zen/sys_info.h> // #include <stdlib.h> //getenv() #include <unistd.h> //getuid() #include <pwd.h> //getpwuid_r() @@ -63,16 +63,16 @@ Zstring resolveRelativePath(const Zstring& relativePath) https://www.gnu.org/software/bash/manual/html_node/Tilde-Expansion.html */ if (startsWith(pathTmp, "~/") || pathTmp == "~") { - try - { - const Zstring& homePath = getUserHome(); //throw FileError + try + { + const Zstring& homePath = getUserHome(); //throw FileError if (startsWith(pathTmp, "~/")) pathTmp = appendPath(homePath, pathTmp.c_str() + 2); else //pathTmp == "~" pathTmp = homePath; - } - catch (FileError&) {} + } + catch (FileError&) {} //else: error! no further processing! } else |