From: Øyvind Kolås Date: Tue, 5 Feb 2008 15:37:52 +0000 (+0000) Subject: * clutter/clutter-texture.c: removed spurious left over debug printf. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=19e64c65d5b67aa0def3b121c23ca15f4dbb97b4;p=profile%2Fivi%2Fclutter.git * clutter/clutter-texture.c: removed spurious left over debug printf. --- diff --git a/ChangeLog b/ChangeLog index 071378a..b9a6082 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-02-05 Øyvind KolÃ¥s + * clutter/clutter-texture.c: removed spurious left over debug printf. + +2008-02-05 Øyvind KolÃ¥s + * clutter/clutter-texture.c: applied modified patch from Gwenole Beuchesne adressing bug #635. Adressing a buffer overflow in clutter_texture_get_pixbuf() when tiling is forced. diff --git a/clutter/clutter-texture.c b/clutter/clutter-texture.c index b9fe28a..f5755f2 100644 --- a/clutter/clutter-texture.c +++ b/clutter/clutter-texture.c @@ -1173,8 +1173,6 @@ texture_get_tile_pixbuf (ClutterTexture *texture, COGLuint texture_id, int bpp) tex_height = clutter_util_next_p2 (priv->height); } - g_print ("%i %i\n", tex_width, tex_height); - if ((pixels = g_malloc (((tex_width * bpp + 3) &~ 3) * tex_height)) == NULL) return NULL;