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 | a60cb23d130c38026eac724e04bff87f9fe09149 (patch) | |
tree | db22563278c2c6309e5a55475b538335e8f3c531 | |
parent | e28e96bb5f5baf528e819d36eb9ce4747456bfea (diff) |
i#110193: Mingw port update fix: subject name of certificate in xmlsec
-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 9c505800388f..8f983dae05de 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); |