diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-08-30 14:42:59 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-08-30 14:42:59 +0000 |
commit | aad0d81520295503bcde437b3763b21a2b687fe0 (patch) | |
tree | 26509f9e6fbef39cf4bc2f4ac97f0dcbb9fea761 /xmlhelp | |
parent | 741bf692d453c72b321a1f56c8d4651e5160d747 (diff) |
INTEGRATION: CWS ab41_SRC680 (1.9.46); FILE MERGED
2007/08/29 09:44:26 ab 1.9.46.1: #i80952# Applied patch to avoid memory double free
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/qe/Search.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xmlhelp/source/cxxhelp/qe/Search.cxx b/xmlhelp/source/cxxhelp/qe/Search.cxx index 2da4b8141acf..92aae07a7df0 100644 --- a/xmlhelp/source/cxxhelp/qe/Search.cxx +++ b/xmlhelp/source/cxxhelp/qe/Search.cxx @@ -4,9 +4,9 @@ * * $RCSfile: Search.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: obo $ $Date: 2006-09-17 01:20:00 $ + * last change: $Author: vg $ $Date: 2007-08-30 15:42:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -477,9 +477,12 @@ void Search::searchDocument() } while( nextDocGenHeap_.isNonEmpty() ); + // #i80952 +#if 0 for( sal_uInt32 i = 0; i < start.size(); ++i ) if( start[i] != RoleFiller::STOP() ) delete start[i]; +#endif } |