fixed bug in gfxfontlist_free
[swftools.git] / lib / gfxtools.c
index dd8d2b7..06930ec 100644 (file)
@@ -44,6 +44,7 @@ static void linedraw_moveTo(gfxdrawer_t*d, gfxcoord_t x, gfxcoord_t y)
        return;
 
     }
+    l->sx = l->sy = 0;
     d->x = l->x = x;
     d->y = l->y = y;
     l->next = 0;
@@ -777,7 +778,7 @@ void gfxfontlist_free(gfxfontlist_t*list, char deletefonts)
 {
     gfxfontlist_t*l = list;
     while(l) {
-       gfxfontlist_t*next = l;
+       gfxfontlist_t*next = l->next;
        memset(l, 0, sizeof(*l));
        if(l->font) {
            gfxfont_free(l->font);