diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2011-08-04 11:42:29 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-08 13:04:50 +0100 |
commit | ada4759219efa816ec4c4d29c40cd1428c38e5d4 (patch) | |
tree | fe7c063af5f98728d7a8a90547e4d7f3b850c921 /sal | |
parent | 2ee5618ba5f56f6f7b8b708e98618c77a4e228fe (diff) |
osl_getAbsoluteFileURL symlinks allowed: ".", ".." still treated
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/file_url.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sal/osl/unx/file_url.cxx b/sal/osl/unx/file_url.cxx index 1d69faa1e052..a2a3ddad3f38 100644 --- a/sal/osl/unx/file_url.cxx +++ b/sal/osl/unx/file_url.cxx @@ -669,7 +669,9 @@ oslFileError osl_getAbsoluteFileURL(rtl_uString* ustrBaseDirURL, rtl_uString* u rtl::OUString base; sal_Int32 last_slash = unresolved_path.lastIndexOf( UNICHAR_SLASH ); - if (last_slash >= 0 && last_slash + 1 < unresolved_path.getLength()) + if (last_slash >= 0 && last_slash + 1 < unresolved_path.getLength() + && ! ( last_slash + 2 == unresolved_path.getLength() && unresolved_path.matchAsciiL(RTL_CONSTASCII_STRINGPARAM("."), last_slash + 1) ) + && ! ( last_slash + 3 == unresolved_path.getLength() && unresolved_path.matchAsciiL(RTL_CONSTASCII_STRINGPARAM(".."), last_slash + 1) )) { base = unresolved_path.copy(last_slash+1); unresolved_path = unresolved_path.copy(0, last_slash); |