[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(mgp-users 00113) Re: bug report



> > I had a coredump in mgp on a big file.
> > After investigation, it occurs that I reached the MAXFILE or MAXLINE limit
> > somewhere. Having a static table does not annoy me, if the index is
> > checked before accessing a wrong memory address;-)
> 
> Could you send me your mgp file? I'll check it. 

Here it is.

coelho:staff(027)@coulommiers Tests/mgp; mgp bug2.mgp
default.mgp:18: warning: directive "vfont" not supported in this configuration
default.mgp:19: warning: directive "vfont" not supported in this configuration
default.mgp:20: warning: directive "vfont" not supported in this configuration
Segmentation fault (core dumped)

coelho:staff(027)@coulommiers Tests/mgp; cat bug2.mgp
%include "default.mgp"
%page

too many pages... (MAXPAGE=200)

%filter "sh"
n=1
while [ $n -lt 210 ]
do
  echo '%page' ; echo ; echo $n ; echo ;
  n=`expr $n + 1 `
done
%endfilter