From 0ed38b0d75e1a1c76a187c73ef838d369731e8e8 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Tue, 28 Aug 2001 10:50:56 +0000 Subject: Dont call g_print with a NULL string. See bug #7396. 2001-08-28 Not Zed * e-categories-master-list-wombat.c (ecmlw_load): Dont call g_print with a NULL string. See bug #7396. svn path=/trunk/; revision=12498 --- e-util/ChangeLog | 5 +++++ e-util/e-categories-master-list-wombat.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'e-util') diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 5eca6efaac..409f7028c1 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2001-08-28 Not Zed + + * e-categories-master-list-wombat.c (ecmlw_load): Dont call + g_print with a NULL string. See bug #7396. + 2001-08-24 Jeffrey Stedfast * e-mktemp.c (get_path): Make more robust. diff --git a/e-util/e-categories-master-list-wombat.c b/e-util/e-categories-master-list-wombat.c index 6eb0a2562d..8ee2981e8f 100644 --- a/e-util/e-categories-master-list-wombat.c +++ b/e-util/e-categories-master-list-wombat.c @@ -51,7 +51,7 @@ ecmlw_load (ECategoriesMasterListWombat *ecmlw) string); } - g_print ("load: %s\n", string); + g_print ("load: %s\n", string?string:"(nil)"); g_free (string); } -- cgit v1.2.3