summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authortono <tono@openoffice.org>2010-03-24 19:23:56 +0900
committertono <tono@openoffice.org>2010-03-24 19:23:56 +0900
commit32d363c0b9d24dc72626357b77e7561b3dbe79de (patch)
tree375e9aacc1a6c776e75b583fd9fd54c96729b0d7 /xmlsecurity
parentc1f9e0ca8b8cdec49c861a22f4e91b953abff498 (diff)
i#110193: Mingw port update fix: subject name of certificate in xmlsec
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx
index bc628e2b8..d4c0689e5 100644
--- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx
+++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx
@@ -292,7 +292,7 @@ sal_Int16 SAL_CALL X509Certificate_MSCryptImpl :: getVersion() throw ( ::com::su
throw RuntimeException() ;
}
- OUString xSubject(subject);
+ OUString xSubject(reinterpret_cast<const sal_Unicode*>(subject));
delete [] subject ;
return replaceTagSWithTagST(xSubject);