Use g_slice for PangoOTBuffer allocation. (bug #325026, Matthias Clasen)

2005-12-27  Behdad Esfahbod  <behdad@gnome.org>

        * pango/opentype/pango-ot-buffer.c: Use g_slice for PangoOTBuffer
        allocation. (bug #325026, Matthias Clasen)
This commit is contained in:
Behdad Esfahbod 2005-12-27 09:55:48 +00:00 committed by Behdad Esfahbod
parent b5baa43d3a
commit 71524f1bc8
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ pango_ot_buffer_new (PangoFcFont *font)
* probably already have the font locked, however,
* so there is little performance penalty.
*/
PangoOTBuffer *buffer = g_new (PangoOTBuffer, 1);
PangoOTBuffer *buffer = g_slice_new (PangoOTBuffer);
FT_Face face = pango_fc_font_lock_face (font);
if (otl_buffer_new (face->memory, &buffer->buffer) != FT_Err_Ok)
@ -68,7 +68,7 @@ pango_ot_buffer_destroy (PangoOTBuffer *buffer)
{
otl_buffer_free (buffer->buffer);
g_object_unref (buffer->font);
g_free (buffer);
g_slice_free (PangoOTBuffer, buffer);
}
/**