diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2010-02-22 22:01:28 +0100 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2010-02-22 22:01:28 +0100 |
commit | 99f308a4e4b5e86c694ca1589d4c02bf4cca273a (patch) | |
tree | e931aff385e1bf658b1166a8ab44a3d38b0a0e2c /ucb | |
parent | 76adebce87fb2103c32b08f113d86677b03d4356 (diff) |
#i108909# - Call ne_free(), not directly free()
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/NeonSession.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav/NeonSession.cxx b/ucb/source/ucp/webdav/NeonSession.cxx index 78f351f88f77..ee8db022330e 100644 --- a/ucb/source/ucp/webdav/NeonSession.cxx +++ b/ucb/source/ucp/webdav/NeonSession.cxx @@ -437,7 +437,7 @@ extern "C" int NeonSession_CertificationNotify( void *userdata, char * dn = ne_ssl_readable_dname( ne_ssl_cert_subject( cert ) ); rtl::OUString cert_subject( dn, strlen( dn ), RTL_TEXTENCODING_UTF8, 0 ); - free( dn ); + ne_free( dn ); security::CertificateContainerStatus certificateContainer( xCertificateContainer->hasCertificate( |