diff options
author | tono <tono@openoffice.org> | 2010-03-24 19:23:56 +0900 |
---|---|---|
committer | tono <tono@openoffice.org> | 2010-03-24 19:23:56 +0900 |
commit | 32d363c0b9d24dc72626357b77e7561b3dbe79de (patch) | |
tree | 375e9aacc1a6c776e75b583fd9fd54c96729b0d7 /xmlsecurity | |
parent | c1f9e0ca8b8cdec49c861a22f4e91b953abff498 (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.cxx | 2 |
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); |