diff options
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-categories-master-list-wombat.c | 2 |
2 files changed, 6 insertions, 1 deletions
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 <NotZed@Ximian.com> + + * e-categories-master-list-wombat.c (ecmlw_load): Dont call + g_print with a NULL string. See bug #7396. + 2001-08-24 Jeffrey Stedfast <fejj@ximian.com> * 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); } |