[Libreoffice-commits] .: tools/bootstrp
Tor Lillqvist
tml at kemper.freedesktop.org
Sun May 22 14:20:39 PDT 2011
tools/bootstrp/addexes2/mkfilt.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 820ec76936c944407bedaa9db98723565eaa55aa
Author: Tor Lillqvist <tlillqvist at novell.com>
Date: Mon May 23 00:16:46 2011 +0300
Fix crash introduced in commit 2cc2e5b9a45887a53f01ad2fd324b6ed43f018ef
Really, for a command-line tool that can be run with minimal fuss, is it
really too much to expect changes to be tested?
diff --git a/tools/bootstrp/addexes2/mkfilt.cxx b/tools/bootstrp/addexes2/mkfilt.cxx
index 3ec7119..6ee1f07 100644
--- a/tools/bootstrp/addexes2/mkfilt.cxx
+++ b/tools/bootstrp/addexes2/mkfilt.cxx
@@ -125,7 +125,7 @@ MkFilter::MkFilter( ByteString aInFile, ByteString aOutFile ) :
MkFilter::~MkFilter()
{
- for ( size_t i = 0, n = pLst->size(); i < n; ++i ) {
+ for ( size_t i = 0, n = pTnrLst->size(); i < n; ++i ) {
delete (*pTnrLst)[ i ];
}
delete pTnrLst;
More information about the Libreoffice-commits
mailing list