From: Dana Jansens Date: Wed, 19 Mar 2003 08:09:24 +0000 (+0000) Subject: free the right pixel data yay! X-Git-Tag: openbox-3_0-rc1-RELEASE~1886 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=49a70012642a6d18529dc2efedc6e9c604c0a0b2;p=dana%2Fopenbox.git free the right pixel data yay! --- diff --git a/render/render.c b/render/render.c index b1099d7e..13257910 100644 --- a/render/render.c +++ b/render/render.c @@ -210,7 +210,7 @@ void appearance_free(Appearance *a) if (p->primary != NULL) color_free(p->primary); if (p->secondary != NULL) color_free(p->secondary); if (p->border_color != NULL) color_free(p->border_color); - if (p->pixel_data != NULL) g_free(l->surface.data.planar.pixel_data); + if (p->pixel_data != NULL) g_free(p->pixel_data); } g_free(a); }