diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-04-04 16:09:59 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-04-04 16:09:59 +0000 |
commit | 5220f8ce5ed0aa5b9ca1324cffcbf962c5039d02 (patch) | |
tree | 64f52bb4df98bbdea6fdc8b561636a77d8ed6113 /xmlhelp/source | |
parent | 022741baa18869662d2bb4821823259e88a48062 (diff) |
INTEGRATION: CWS fwk01 (1.28.26); FILE MERGED
2003/03/10 13:39:25 abi 1.28.26.1: #107875# operator new[]/delete - mismatch
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index bc4ea5e9f552..00eb185cdb19 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: urlparameter.cxx,v $ * - * $Revision: 1.28 $ + * $Revision: 1.29 $ * - * last change: $Author: mav $ $Date: 2002-04-08 10:30:12 $ + * last change: $Author: hr $ $Date: 2003-04-04 17:09:59 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1037,7 +1037,7 @@ void InputStreamTransformer::addToBuffer( const char* buffer_,int len_ ) buffer = new char[ len+len_ ]; rtl_copyMemory( (void*)(buffer),(void*)(tmp),sal_uInt32( len ) ); rtl_copyMemory( (void*)(buffer+len),(void*)(buffer_),sal_uInt32( len_ ) ); - delete tmp; + delete[] tmp; len += len_; } |