gaim/gaim

Don't try to use a NULL value in printf.
oldstatus
2005-05-16, Daniel Atallah
9ebfb44e8856
Parents 225748167155
Children 33ff8d2df53a
Don't try to use a NULL value in printf.
--- a/src/gtkblist.c Sun May 15 20:46:29 2005 -0400
+++ b/src/gtkblist.c Mon May 16 14:11:06 2005 -0400
@@ -2498,7 +2498,9 @@
value = g_markup_escape_text(g_hash_table_lookup(chat->components,
pce->identifier), -1);
- g_string_append_printf(parts_text, "\n<b>%s</b> %s", label, value);
+ g_string_append_printf(parts_text, "\n<b>%s</b> %s",
+ label ? label : "",
+ value ? value : "");
g_free(label);
g_free(value);
}