+1998-08-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * garray.c (g_ptr_array_remove_index): bugfix: index check for
+ array has been wrong.
+
Fri Jul 31 22:17:05 1998 Tim Janik <timj@gtk.org>
* testglib.c (g_node_test): added a GNode test.
+1998-08-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * garray.c (g_ptr_array_remove_index): bugfix: index check for
+ array has been wrong.
+
Fri Jul 31 22:17:05 1998 Tim Janik <timj@gtk.org>
* testglib.c (g_node_test): added a GNode test.
+1998-08-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * garray.c (g_ptr_array_remove_index): bugfix: index check for
+ array has been wrong.
+
Fri Jul 31 22:17:05 1998 Tim Janik <timj@gtk.org>
* testglib.c (g_node_test): added a GNode test.
+1998-08-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * garray.c (g_ptr_array_remove_index): bugfix: index check for
+ array has been wrong.
+
Fri Jul 31 22:17:05 1998 Tim Janik <timj@gtk.org>
* testglib.c (g_node_test): added a GNode test.
+1998-08-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * garray.c (g_ptr_array_remove_index): bugfix: index check for
+ array has been wrong.
+
Fri Jul 31 22:17:05 1998 Tim Janik <timj@gtk.org>
* testglib.c (g_node_test): added a GNode test.
+1998-08-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * garray.c (g_ptr_array_remove_index): bugfix: index check for
+ array has been wrong.
+
Fri Jul 31 22:17:05 1998 Tim Janik <timj@gtk.org>
* testglib.c (g_node_test): added a GNode test.
+1998-08-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * garray.c (g_ptr_array_remove_index): bugfix: index check for
+ array has been wrong.
+
Fri Jul 31 22:17:05 1998 Tim Janik <timj@gtk.org>
* testglib.c (g_node_test): added a GNode test.
+1998-08-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * garray.c (g_ptr_array_remove_index): bugfix: index check for
+ array has been wrong.
+
Fri Jul 31 22:17:05 1998 Tim Janik <timj@gtk.org>
* testglib.c (g_node_test): added a GNode test.
g_return_if_fail (array);
- g_return_if_fail (index >= array->len);
+ g_return_if_fail (index < array->len);
array->pdata[index] = array->pdata[array->len - 1];
g_return_if_fail (array);
- g_return_if_fail (index >= array->len);
+ g_return_if_fail (index < array->len);
array->pdata[index] = array->pdata[array->len - 1];