Fix hunspell run-check, NULL,NULL used to work fine for the aff/dic path in

<1.2 but it segfaults in >1.2.  They've been changed to ".","." which works
fine.

Originally committed to SVN as r2188.
This commit is contained in:
Amar Takhar 2008-04-25 20:47:13 +00:00
parent 86d02ede5e
commit 37a50cd97d
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ if test "$with_hunspell" != "no"; then
#include <hunspell.hxx>
int main(void) {
Hunspell *hunspell;
hunspell = new Hunspell(NULL,NULL);
hunspell = new Hunspell(".", ".");
if (!hunspell) return 1;
return 0;
} ])