(font_put_frame_data): Use xfree instead of free.
authorAndreas Schwab <schwab@linux-m68k.org>
Sat, 18 Apr 2009 13:29:59 +0000 (13:29 +0000)
committerAndreas Schwab <schwab@linux-m68k.org>
Sat, 18 Apr 2009 13:29:59 +0000 (13:29 +0000)
src/ChangeLog
src/font.c

index 8447f1b..0193beb 100644 (file)
@@ -1,3 +1,7 @@
+2009-04-18  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * font.c (font_put_frame_data): Use xfree instead of free.
+
 2009-04-17  Juanma Barranquero  <lekktu@gmail.com>
 
        * w32font.c (Qja, Qko): Remove declarations.
index c133a1b..d3ebbf5 100644 (file)
@@ -3682,7 +3682,7 @@ font_put_frame_data (f, driver, data)
            prev->next = list->next;
          else
            f->font_data_list = list->next;
-         free (list);
+         xfree (list);
        }
       return 0;
     }