glib: Improve documentation for g_strfreev()

Fixes #740309.
This commit is contained in:
Alberto Ruiz 2014-11-18 14:43:41 +00:00
parent 61e125a577
commit 6c080721fc

View File

@ -2413,9 +2413,11 @@ g_strsplit_set (const gchar *string,
/** /**
* g_strfreev: * g_strfreev:
* @str_array: a %NULL-terminated array of strings to free * @str_array: a %NULL-terminated array of strings to free
*
* Frees a %NULL-terminated array of strings, and the array itself. * Frees a %NULL-terminated array of strings, as well as each
* If called on a %NULL value, g_strfreev() simply returns. * string it contains.
*
* If @str_array is %NULL, this function simply returns.
*/ */
void void
g_strfreev (gchar **str_array) g_strfreev (gchar **str_array)