Thie looks like issue 106. Here is the text:
I managed to build tesseract and dlltest and they seem to work with
one
problem. When i run the debug version. I get an assert on a char
'Ä' (hex
c4) in dawg.cpp on line 149. The message is that the char is !<255.
The
code is:
isalpha (dummy_word [char_index]) &&
If I change it to
isalpha ((unsigned char)dummy_word [char_index]) &&
it works without problem. The problem seems to be that isalpha takes
an int
but the STRING class has signed chars so values > 0x7f are sign
extended. I
don't know if this patch is correct or hides some other problem