+Wed Dec 1 17:04:37 2004 Manish Singh <yosh@gimp.org>
+
+ * glib/gstring.h (g_string_append_c_inline): actually enable (and
+ fix up the length test).
+
2004-11-30 Tor Lillqvist <tml@iki.fi>
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
+Wed Dec 1 17:04:37 2004 Manish Singh <yosh@gimp.org>
+
+ * glib/gstring.h (g_string_append_c_inline): actually enable (and
+ fix up the length test).
+
2004-11-30 Tor Lillqvist <tml@iki.fi>
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
+Wed Dec 1 17:04:37 2004 Manish Singh <yosh@gimp.org>
+
+ * glib/gstring.h (g_string_append_c_inline): actually enable (and
+ fix up the length test).
+
2004-11-30 Tor Lillqvist <tml@iki.fi>
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
+Wed Dec 1 17:04:37 2004 Manish Singh <yosh@gimp.org>
+
+ * glib/gstring.h (g_string_append_c_inline): actually enable (and
+ fix up the length test).
+
2004-11-30 Tor Lillqvist <tml@iki.fi>
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
+Wed Dec 1 17:04:37 2004 Manish Singh <yosh@gimp.org>
+
+ * glib/gstring.h (g_string_append_c_inline): actually enable (and
+ fix up the length test).
+
2004-11-30 Tor Lillqvist <tml@iki.fi>
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
g_string_append_c_inline (GString *gstring,
gchar c)
{
- if (gstring->len < gstring->allocated_len && 0)
+ if (gstring->len + 1 < gstring->allocated_len)
{
gstring->str[gstring->len++] = c;
gstring->str[gstring->len] = 0;