summaryrefslogtreecommitdiff
path: root/glib/garray.c
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2022-05-27 14:27:12 +0100
committerPhilip Withnall <pwithnall@endlessos.org>2022-05-27 14:27:52 +0100
commita9321c365222c4fe0fe7a33e0d3c0a0cb635b318 (patch)
tree366600d5103304eb900fcd162af87699cfd90a70 /glib/garray.c
parent93bf87528d2568afa9f5cc6156fa276bb230dbf7 (diff)
downloadglib-a9321c365222c4fe0fe7a33e0d3c0a0cb635b318.tar.gz
garray: Add missing (transfer full) introspection annotations
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
Diffstat (limited to 'glib/garray.c')
-rw-r--r--glib/garray.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/glib/garray.c b/glib/garray.c
index 8dfba17b5..6878dd317 100644
--- a/glib/garray.c
+++ b/glib/garray.c
@@ -1171,8 +1171,9 @@ g_ptr_array_new (void)
* g_assert (chunk_buffer->len == 0);
* ]|
*
- * Returns: (transfer full): the element data, which should be
- * freed using g_free().
+ * Returns: (transfer full) (nullable): the element data, which should be
+ * freed using g_free(). This may be %NULL if the array doesn’t have any
+ * elements (i.e. if `*len` is zero).
*
* Since: 2.64
*/
@@ -1309,7 +1310,7 @@ g_array_copy (GArray *array)
* either via g_ptr_array_unref(), when g_ptr_array_free() is called with
* @free_segment set to %TRUE or when removing elements.
*
- * Returns: A new #GPtrArray
+ * Returns: (transfer full): A new #GPtrArray
*
* Since: 2.22
*/
@@ -1333,7 +1334,7 @@ g_ptr_array_new_with_free_func (GDestroyNotify element_free_func)
* g_ptr_array_unref(), when g_ptr_array_free() is called with
* @free_segment set to %TRUE or when removing elements.
*
- * Returns: A new #GPtrArray
+ * Returns: (transfer full): A new #GPtrArray
*
* Since: 2.30
*/