if ( FT_QNEW_ARRAY( *longs, num_longs ) ||
FT_QNEW_ARRAY( *shorts, num_shorts ) )
goto Fail;
The problem is that my font has all 1673 long format metrics and 0 short format so the second call to FT_QNEW_ARRAY gets 0 as its second argument. This causes it throw an invalid parameter error. I'm not exactly sure what the intention was but I think all long or all short formats should be valid.
Dave Behnke
Retail Technology Solutions, Inc.
_______________________________________________ Freetype-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/freetype-devel
