Andre Poenitz wrote:
> 
> On Thu, Jun 27, 2002 at 06:40:27PM +0900, R. Lahaye wrote:
> > Then I get stuck, but when I replace the body of
> > math_support.C::searchFont() merely by
> >
> >    fontinfo * searchFont(string const & name)
> >    {
> >     return &fontinfos[8];
> >    }
> >
> > the problem is solved.
> > Are you having any idea what could be "wrong" with the for-loop
> > in searchFont() ?
> 
> No.

Andre,

Got it!
Well, at least got closer to the culprit:

It's the recursion call in math_support.C::searchFont at line 596.
When I replace

        return searchFont("mathnormal");

by

        return &fontinfos[8];

everything's fine; no SIGSEGV crash anymore when opening math mode.

A clue?

Rob.

Reply via email to