pango_color_parse



The following little patch prevents a possible buffer overrun in
pango_color_parse. Ok to commit ?

Btw there are currently three copies of this code (color_parse/color_find)
in gdk and pango.
Would it be ok to replace the copy in io-xpm.c by pango_color_parse ?
I don't know if a gdk-pixbuf -> pango dependency is considered a bad thing
or not.


Index: pango-color.c
===================================================================
RCS file: /cvs/gnome/pango/pango/pango-color.c,v
retrieving revision 1.3
diff -u -3 -p -u -r1.3 pango-color.c
--- pango-color.c	2001/09/11 15:29:46	1.3
+++ pango-color.c	2001/09/17 07:42:26
@@ -22,6 +22,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <glib.h>

 #include "pango-attributes.h"

@@ -944,7 +945,7 @@ pango_color_parse (PangoColor *color,

       i /= 3;

-      sprintf (fmt, "%%%dx%%%dx%%%dx", i, i, i);
+      g_snprintf (fmt, 16, "%%%dx%%%dx%%%dx", i, i, i);
       if (sscanf (spec+1, fmt, &r, &g, &b) != 3)
         return FALSE;






[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]