summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2009-12-08 14:11:19 +0000
committerJoachim Lingner <jl@openoffice.org>2009-12-08 14:11:19 +0000
commitb3bfaa49dbfe2c7e6c9861766c6dbcb338a1cbfd (patch)
treeff07e2a660e1f26c1fa39b80a64df709c3658844 /desktop
parent875ac20478f16e5107acb222c0b851b99d2e0f27 (diff)
#i107528# incorrect string conversion of the path of the berkeley db causes the Extension Manager to abort
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/dp_persmap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/dp_persmap.cxx b/desktop/source/deployment/dp_persmap.cxx
index 39ea6f016dbf..75005b728465 100644
--- a/desktop/source/deployment/dp_persmap.cxx
+++ b/desktop/source/deployment/dp_persmap.cxx
@@ -104,7 +104,7 @@ PersistentMap::PersistentMap( OUString const & url_, bool readOnly )
OSL_ASSERT( false );
}
OString cstr_sysPath(
- OUStringToOString( m_sysPath, osl_getThreadTextEncoding() ) );
+ OUStringToOString( m_sysPath, RTL_TEXTENCODING_UTF8 ) );
char const * pcstr_sysPath = cstr_sysPath.getStr();
u_int32_t flags = DB_CREATE;