mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
Fixes for #79347, Ron Arts.
Tue May 7 11:24:22 2002 Owen Taylor <otaylor@redhat.com> Fixes for #79347, Ron Arts. * glib/gqsort.c (g_qsort_with_data): Handle 0 elements, don't g_return_if_fail(). * tests/qsort-test.c (main): Add a 0 element test. * glib/garray.c (g_[ptr_]array_sort_with[_data]): Remove invalid assertions that array->pdata != NULL .. it's NULL for 0 elements which is a valid case.
This commit is contained in:
@@ -23,5 +23,8 @@ main ()
|
||||
for (i = 0; i < SIZE - 1; i++)
|
||||
g_assert (array[i] <= array[i+1]);
|
||||
|
||||
/* 0 elemenents is a valid case */
|
||||
g_qsort_with_data (array, 0, sizeof (guint32), sort, NULL);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user