[ft-devel] warnings in FreeType 2.3.7

2008-10-01 Thread Graham Asher
I found these warnings when compiling FreeType 2.3.7 using Microsoft Visual C++ 6.0: s:\src\freetype-2.3.7\src\truetype\ttgload.c(408) : warning C4244: '=' : conversion from 'int ' to 'unsigned char ', possible loss of data s:\src\freetype-2.3.7\src\truetype\ttgload.c(443) : warning C4244: '=' : c

Re: [ft-devel] Regression Crash between freetype 2.3.5 and 2.3.7

2008-10-01 Thread Ian Britten
Albert Astals Cid wrote: A Diumenge 17 Agost 2008, Werner LEMBERG va escriure: The attached font crashes when trying to load it. Neither 2.3.7 nor the current CVS does crash for me. I tested with both ftview and ftstring; valgrind doesn't report an error either. Strange, any idea what could

Re: [ft-devel] Regression Crash between freetype 2.3.5 and 2.3.7

2008-10-01 Thread Werner LEMBERG
> I don't know if it's the same problem, but I reported a similar > problem back at the end of July. > > See my thread that ends with this post: >http://lists.gnu.org/archive/html/freetype/2008-07/msg00036.html > or the bug I filed with Mandriva >https://qa.mandriva.com/show_bug.cgi?id=42

Re: [ft-devel] Regression Crash between freetype 2.3.5 and 2.3.7

2008-10-01 Thread Ian Britten
Werner LEMBERG wrote: I don't know if it's the same problem, but I reported a similar problem back at the end of July. See my thread that ends with this post: http://lists.gnu.org/archive/html/freetype/2008-07/msg00036.html or the bug I filed with Mandriva https://qa.mandriva.com/show_bug.

[ft-devel] issues found when porting to FreeType 2.3.7

2008-10-01 Thread Graham Asher
I'm going to list all the other issues I find while moving to FreeType 2.3.7 here. 1. Spelling errors in comments. The word 'synthetize' doesn't exist and should be corrected to 'synthesize' in two places in ftoption.h. 2. The function open_face in ftobjs.c crashes if 'face' is not created. The f

Re: [ft-devel] issues found when porting to FreeType 2.3.7

2008-10-01 Thread Werner LEMBERG
> The word 'synthetize' doesn't exist and should be corrected to > 'synthesize' in two places in ftoption.h. Fixed, thanks. > 2. The function open_face in ftobjs.c crashes if 'face' is not > created. The fix is to test for 'face' being non-null in the > error-handling section. I fixed it on a p