Chromium Code Reviews| Index: src/hunspell/affixmgr.cxx |
| =================================================================== |
| --- src/hunspell/affixmgr.cxx (revision 123803) |
| +++ src/hunspell/affixmgr.cxx (working copy) |
| @@ -3542,7 +3542,7 @@ |
| if (*piece != '\0') { |
| switch(i) { |
| case 0: { |
| - if (strncmp(piece, keyword, sizeof(keyword)) != 0) { |
| + if (strncmp(piece, keyword, strlen(keyword)) != 0) { |
| HUNSPELL_WARNING(stderr, "error: line %d: table is corrupt\n", af->getlinenum()); |
| delete *rl; |
| *rl = NULL; |