diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-02-20 14:06:26 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-02-20 14:06:26 +0000 |
commit | 6c4d78dcdb58462f84dfd2f62109be17ba8c692a (patch) | |
tree | 793b20971809a83f2d14612ec66ab3066adc7bc8 /ucb/source/ucp | |
parent | 9670bda70bcdd9aa44a9dbe3422add306d76f46f (diff) |
#84155# - Fixed memory leak in ctor.
Diffstat (limited to 'ucb/source/ucp')
-rw-r--r-- | ucb/source/ucp/webdav/NeonUri.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav/NeonUri.cxx b/ucb/source/ucp/webdav/NeonUri.cxx index a4d8a5ed81d6..8300377bdb01 100644 --- a/ucb/source/ucp/webdav/NeonUri.cxx +++ b/ucb/source/ucp/webdav/NeonUri.cxx @@ -2,9 +2,9 @@ * * $RCSfile: NeonUri.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: kso $ $Date: 2001-02-15 16:28:24 $ + * last change: $Author: kso $ $Date: 2001-02-20 15:06:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -636,6 +636,8 @@ NeonUri::NeonUri( const OUString & inUri ) mPort = theUri.port; mPath = OStringToOUString( theUri.path, RTL_TEXTENCODING_UTF8 ); + uri_free( &theUri ); + calculateURI (); } |