freetype
[Top][All Lists]
Advanced

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

Re: [ft] Tutorial example segmentation fault


From: Werner LEMBERG
Subject: Re: [ft] Tutorial example segmentation fault
Date: Sat, 03 Sep 2005 09:38:27 +0200 (CEST)

>    if ( i >= WIDTH || j >= HEIGHT )
>          continue;

Thanks for reporting.  These lines should be

     if ( i < 0 || j < 0 ||
          i >= WIDTH || j >= HEIGHT )
       continue;

then it works just fine.  I'll update the example file accordingly.


    Werner




reply via email to

[Prev in Thread] Current Thread [Next in Thread]