search for this in the iniparser.cpp:
Code:
// Reads out an entire sentence and returns it
void
INI_Sentence (FILE * f, char result[80])
{
char ch;
int pos = 0;
// clear out entire string
for (int i = 0; i < 80; i++)
result[i] = '\0';
while ((feof (f) == 0) && ((ch = fgetc (f)) != '\n'))
{
result[pos] = ch;
pos++;
// do not allow strings greater then 80 characters. This check prevents a crash for
// users who do exceed the limit.
if (pos > 79)
break;
putchar (ch);
}
}
... and comment out that "putchar(ch)" line.