On 10/27/07, Antoni Grzymala <[EMAIL PROTECTED]> wrote: <snip>
> Replying to you question from a latter e-mail, it only happens with my
> config.h so I'm including it for inspection.
what about removing NULL in
const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
so that it reads
const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
?
does it solve your crash?
