diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-05-22 09:57:02 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-05-22 09:57:02 +0000 |
commit | a343c3efea79f2e037a96d682c7ffd856df74a26 (patch) | |
tree | 53ebc2a25e3193fbec4b3c475e235caf670e4cad /tools | |
parent | 35b0402a360e2e4c9f68a537fe088710eb4b6772 (diff) |
INTEGRATION: CWS setup09 (1.4.26); FILE MERGED
2003/05/20 13:51:28 dv 1.4.26.1: #109685# fixed operator new/delete mismatch
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/string/strcvt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/string/strcvt.cxx b/tools/source/string/strcvt.cxx index 32dfa83aedf7..7aa7f315addf 100644 --- a/tools/source/string/strcvt.cxx +++ b/tools/source/string/strcvt.cxx @@ -2,9 +2,9 @@ * * $RCSfile: strcvt.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: hr $ $Date: 2003-03-27 17:04:50 $ + * last change: $Author: vg $ $Date: 2003-05-22 10:57:02 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -436,7 +436,7 @@ static void ImplStringConvert( ByteString* pString, RTL_UNICODETOTEXT_FLAGS_PRIVATE_MAPTO0 | RTL_UNICODETOTEXT_FLAGS_NONSPACING_IGNORE | RTL_UNICODETOTEXT_FLAGS_CONTROL_IGNORE ); - delete pTempBuf; + delete [] pTempBuf; } } |