From 3b5572fca5848fb0431e535fec9033490a540931 Mon Sep 17 00:00:00 2001
From: kramm <kramm>
Date: Thu, 6 Jun 2002 10:06:09 +0000
Subject: [PATCH] fonts with 0 characters were parsed incorrectly.

---
 lib/modules/swftext.c |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

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;t<glyphcount;t++)
 	    swf_GetU32(tag); //offset[t]
-	swf_GetU32(tag); // fontcodeoffset
+	
+	if(glyphcount) /* this _if_ is not in the specs */
+	    swf_GetU32(tag); // fontcodeoffset
     } else {
 	for(t=0;t<glyphcount;t++)
 	    swf_GetU16(tag); //offset[t]
-	swf_GetU16(tag); // fontcodeoffset
+
+	if(glyphcount) /* this _if_ is not in the specs */
+	    swf_GetU16(tag); // fontcodeoffset
     }
     for(t=0;t<glyphcount;t++)
 	swf_GetSimpleShape(tag,&(font->glyph[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 = 
-- 
1.7.10.4