From: kramm Date: Thu, 6 Jun 2002 10:06:09 +0000 (+0000) Subject: fonts with 0 characters were parsed incorrectly. X-Git-Tag: release-0-4-0~49 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=3b5572fca5848fb0431e535fec9033490a540931 fonts with 0 characters were parsed incorrectly. --- diff --git a/lib/modules/swftext.c b/lib/modules/swftext.c index 5ebe89f..28ebc15 100644 --- a/lib/modules/swftext.c +++ b/lib/modules/swftext.c @@ -208,11 +208,15 @@ int swf_FontExtract_DefineFont2(int id,SWFFONT * font,TAG * tag) if(flags1&8) { // wide offsets for(t=0;tglyph[t].shape)); @@ -254,8 +258,10 @@ int swf_FontExtract_DefineFont2(int id,SWFFONT * font,TAG * tag) swf_ResetReadBits(tag); swf_GetRect(tag, font->layout->bounds); } + kerningcount = swf_GetU16(tag); font->layout->kerningcount = kerningcount; + font->layout->kerning = (SWFKERNING*)malloc(sizeof(SWFKERNING)*kerningcount); if(kerningcount) { font->layout->kerning =