mirror of https://github.com/odrling/Aegisub
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:
parent
86d02ede5e
commit
37a50cd97d
|
@ -497,7 +497,7 @@ if test "$with_hunspell" != "no"; then
|
||||||
#include <hunspell.hxx>
|
#include <hunspell.hxx>
|
||||||
int main(void) {
|
int main(void) {
|
||||||
Hunspell *hunspell;
|
Hunspell *hunspell;
|
||||||
hunspell = new Hunspell(NULL,NULL);
|
hunspell = new Hunspell(".", ".");
|
||||||
if (!hunspell) return 1;
|
if (!hunspell) return 1;
|
||||||
return 0;
|
return 0;
|
||||||
} ])
|
} ])
|
||||||
|
|
Loading…
Reference in New Issue