From 0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14 Mon Sep 17 00:00:00 2001 From: Gediminas Paulauskas Date: Tue, 10 Apr 2001 20:55:52 +0000 Subject: i18n fixes. i18n fixes. 2001-04-10 Gediminas Paulauskas * gal/widgets/e-unicode.c (e_utf8_*_*_string): if (!string) return NULL; to avoid crashes in strlen(NULL). TODO: need g_strlen which does that. 2001-04-10 Gediminas Paulauskas * e-table.c (et_real_construct): convert click_to_add_message locale->utf8. svn path=/trunk/; revision=9214 --- widgets/misc/e-unicode.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'widgets/misc') diff --git a/widgets/misc/e-unicode.c b/widgets/misc/e-unicode.c index 4d78d17788..fe16cb2102 100644 --- a/widgets/misc/e-unicode.c +++ b/widgets/misc/e-unicode.c @@ -283,6 +283,7 @@ e_utf8_from_gtk_string_sized (GtkWidget *widget, const gchar *string, gint bytes gchar * e_utf8_from_gtk_string (GtkWidget *widget, const gchar *string) { + if (!string) return NULL; return e_utf8_from_gtk_string_sized (widget, string, strlen (string)); } @@ -357,6 +358,7 @@ e_utf8_to_gtk_string_sized (GtkWidget *widget, const gchar *string, gint bytes) gchar * e_utf8_to_gtk_string (GtkWidget *widget, const gchar *string) { + if (!string) return NULL; return e_utf8_to_gtk_string_sized (widget, string, strlen (string)); } @@ -416,6 +418,7 @@ e_utf8_from_locale_string_sized (const gchar *string, gint bytes) gchar * e_utf8_from_locale_string (const gchar *string) { + if (!string) return NULL; return e_utf8_from_locale_string_sized (string, strlen (string)); } @@ -480,6 +483,7 @@ e_utf8_to_locale_string_sized (const gchar *string, gint bytes) gchar * e_utf8_to_locale_string (const gchar *string) { + if (!string) return NULL; return e_utf8_to_locale_string_sized (string, strlen (string)); } -- cgit v1.2.3