From: Benjamin Otte Date: Sat, 24 Dec 2011 13:26:24 +0000 (+0100) Subject: docs: Clarify non-NUL requirement in g_utf8_validate() X-Git-Tag: 2.31.8~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c4fc2584241dadeedee7b21bd24ca5708d6318e8;p=platform%2Fupstream%2Fglib.git docs: Clarify non-NUL requirement in g_utf8_validate() UTF8 validation is not about your character on a dating site, so don't talk about meeting. https://bugzilla.gnome.org/show_bug.cgi?id=666803 --- diff --git a/glib/gutf8.c b/glib/gutf8.c index a7bc343..17d4273 100644 --- a/glib/gutf8.c +++ b/glib/gutf8.c @@ -1606,7 +1606,7 @@ fast_validate_len (const char *str, * being validated otherwise). * * Note that g_utf8_validate() returns %FALSE if @max_len is - * positive and NUL is met before @max_len bytes have been read. + * positive and any of the @max_len bytes are NUL. * * Returns %TRUE if all of @str was valid. Many GLib and GTK+ * routines require valid UTF-8 as input;