From 90eb7fecee649849f786bab50be4402a23e3d617 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Wed, 21 Nov 2001 12:55:21 +0000 Subject: #95038# buffer access with out-of-range index fixed --- linguistic/source/dicimp.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'linguistic') diff --git a/linguistic/source/dicimp.cxx b/linguistic/source/dicimp.cxx index 0fa41556b943..c950b0227c77 100644 --- a/linguistic/source/dicimp.cxx +++ b/linguistic/source/dicimp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dicimp.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: tl $ $Date: 2001-07-25 10:07:44 $ + * last change: $Author: tl $ $Date: 2001-11-21 13:55:21 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -527,7 +527,7 @@ int DictionaryNeo::cmpDicEntry(const OUString& rWord1, } while (nIdx2 < nLen2 ) { - if (aWord1[ nIdx2++ ] == cIgnChar) + if (aWord2[ nIdx2++ ] == cIgnChar) nNumIgnChar2++; } -- cgit