summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2001-11-21 12:55:21 +0000
committerThomas Lange <tl@openoffice.org>2001-11-21 12:55:21 +0000
commit90eb7fecee649849f786bab50be4402a23e3d617 (patch)
tree4af7c15c4d0af2489d3c8e48bd64d101ded10cc3 /linguistic
parente980321510d61ce7cc0cb258f37dc011e218f5a1 (diff)
#95038# buffer access with out-of-range index fixed
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/dicimp.cxx6
1 files changed, 3 insertions, 3 deletions
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++;
}