aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-08-28 18:50:56 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-08-28 18:50:56 +0800
commit0ed38b0d75e1a1c76a187c73ef838d369731e8e8 (patch)
tree01fa0b3f565c117ecbde7c21d9f4098bfdef0b7c /e-util
parent2ec56bc8bafa4ed6820d8d98e8b065f4ef8dbb6c (diff)
downloadgsoc2013-evolution-0ed38b0d75e1a1c76a187c73ef838d369731e8e8.tar
gsoc2013-evolution-0ed38b0d75e1a1c76a187c73ef838d369731e8e8.tar.gz
gsoc2013-evolution-0ed38b0d75e1a1c76a187c73ef838d369731e8e8.tar.bz2
gsoc2013-evolution-0ed38b0d75e1a1c76a187c73ef838d369731e8e8.tar.lz
gsoc2013-evolution-0ed38b0d75e1a1c76a187c73ef838d369731e8e8.tar.xz
gsoc2013-evolution-0ed38b0d75e1a1c76a187c73ef838d369731e8e8.tar.zst
gsoc2013-evolution-0ed38b0d75e1a1c76a187c73ef838d369731e8e8.zip
Dont call g_print with a NULL string. See bug #7396.
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. svn path=/trunk/; revision=12498
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-categories-master-list-wombat.c2
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);
}