Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: README.chromium

Issue 11442040: Fix array-out-of-bounds error in hunspell (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/hunspell.git@master
Patch Set: Merge with master Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | google.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Name: hunspell 1 Name: hunspell
2 URL: http://hunspell.sourceforge.net/ 2 URL: http://hunspell.sourceforge.net/
3 Version: 1.3.2 3 Version: 1.3.2
4 License: MPL 1.1/GPL 2.0/LGPL 2.1 4 License: MPL 1.1/GPL 2.0/LGPL 2.1
5 License File: COPYING 5 License File: COPYING
6 Security Critical: yes 6 Security Critical: yes
7 7
8 Checkout command: 8 Checkout command:
9 cvs -z3 -d:pserver:anonymous@hunspell.cvs.sourceforge.net:/cvsroot/hunspell co \ 9 cvs -z3 -d:pserver:anonymous@hunspell.cvs.sourceforge.net:/cvsroot/hunspell co \
10 -D "23 Mar 2012" -P hunspell 10 -D "23 Mar 2012" -P hunspell
11 11
12 Description: 12 Description:
13 This is a partial copy of Hunspell 1.3.2 with the following changes: 13 This is a partial copy of Hunspell 1.3.2 with the following changes:
14 * Remove '#include "config.h"' from src/hunspell/hunspell.hxx 14 * Remove '#include "config.h"' from src/hunspell/hunspell.hxx
15 * Remove '#include "config.h"' from src/hunspell/license.hunspell 15 * Remove '#include "config.h"' from src/hunspell/license.hunspell
16 * Change src/hunspell/filemgr.hxx and src/hunspell/filemgr.cxx to use 16 * Change src/hunspell/filemgr.hxx and src/hunspell/filemgr.cxx to use
17 LineIterator. 17 LineIterator.
18 * Add ScropedHashEntry, which creates temporary hentry objects, to 18 * Add ScropedHashEntry, which creates temporary hentry objects, to
19 src/hunspell/suggestmgr.cxx 19 src/hunspell/suggestmgr.cxx
20 * Change the input params of the constructors to receive a BDICTReader instead 20 * Change the input params of the constructors to receive a BDICTReader instead
21 of a file path. 21 of a file path.
22 * Merge http://hunspell.cvs.sourceforge.net/viewvc/hunspell/hunspell/src/hunspel l/affixmgr.cxx?r1=1.40&r2=1.41 22 * Merge http://hunspell.cvs.sourceforge.net/viewvc/hunspell/hunspell/src/hunspel l/affixmgr.cxx?r1=1.40&r2=1.41
23 The patch is in google.patch. 23 The patch is in google.patch.
24 * Add a pointer to the bdict_reader into the "SuggestMgr" so that it can use the 24 * Add a pointer to the bdict_reader into the "SuggestMgr" so that it can use the
25 replacement table from the bdict file for the secondary suggestion mechanism. 25 replacement table from the bdict file for the secondary suggestion mechanism.
26 * Reduce maximum word length to spellcheck from 99 to 98 characters to avoid
27 a crash in SuggestMgr::forgotchar_utf() in Windows.
26 28
27 All dictionaries used by Chromium has been checked in to the 29 All dictionaries used by Chromium has been checked in to the
28 'third_party/hunspell_dictionaries' directory. They have several additions over 30 'third_party/hunspell_dictionaries' directory. They have several additions over
29 the default myspell/hunspell dictionaries. 31 the default myspell/hunspell dictionaries.
30 (See 'third_party/hunspell_dictionaries/README.chromium' for their details.) 32 (See 'third_party/hunspell_dictionaries/README.chromium' for their details.)
OLDNEW
« no previous file with comments | « no previous file | google.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698