added missing include
[swftools.git] / lib / gfxtools.c
index f34bcf4..327a0cb 100644 (file)
@@ -21,6 +21,7 @@
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
 #include <stdio.h>
+#include <stdlib.h>
 #include <memory.h>
 #include <math.h>
 #include <assert.h>
@@ -778,7 +779,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);