diff options
Diffstat (limited to 'sal/rtl/bootstrap.cxx')
-rw-r--r-- | sal/rtl/bootstrap.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx index 030afe4e5897..8530e73c2159 100644 --- a/sal/rtl/bootstrap.cxx +++ b/sal/rtl/bootstrap.cxx @@ -270,8 +270,9 @@ static OUString & getIniFileName_Impl() #ifdef MACOSX // We keep only executables in the MacOS folder, and all // rc files in LIBO_ETC_FOLDER (typically "Resources"). - sal_Int32 p = fileName.lastIndexOf( "/MacOS/" ); - fileName = fileName.replaceAt( p+1, strlen("MacOS"), LIBO_ETC_FOLDER ); + sal_Int32 off = fileName.lastIndexOf( "/MacOS/" ); + if ( off != -1 ) + fileName = fileName.replaceAt( off + 1, strlen("MacOS"), LIBO_ETC_FOLDER ); #endif } #endif |