diff options
author | Gediminas Paulauskas <menesis@delfi.lt> | 2001-04-11 04:55:52 +0800 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2001-04-11 04:55:52 +0800 |
commit | 0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14 (patch) | |
tree | 48ffe33cefbe5ae8413de5a5fc0094683a7a23a4 /widgets/misc | |
parent | eee943f21ebc92e70cec963950c2fc0a29cab544 (diff) | |
download | gsoc2013-evolution-0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14.tar gsoc2013-evolution-0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14.tar.gz gsoc2013-evolution-0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14.tar.bz2 gsoc2013-evolution-0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14.tar.lz gsoc2013-evolution-0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14.tar.xz gsoc2013-evolution-0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14.tar.zst gsoc2013-evolution-0b90b0b1e8ffd8a9cbed8d9618bf9e8731681a14.zip |
i18n fixes.
i18n fixes.
2001-04-10 Gediminas Paulauskas <menesis@delfi.lt>
* 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 <menesis@delfi.lt>
* e-table.c (et_real_construct): convert click_to_add_message locale->utf8.
svn path=/trunk/; revision=9214
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/e-unicode.c | 4 |
1 files changed, 4 insertions, 0 deletions
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)); } |