garray.c (g_ptr_array_remove_index): bugfix: index check for array has

been wrong
This commit is contained in:
Sebastian Wilhelmi 1998-08-03 07:18:23 +00:00
parent 5272119ce9
commit de89a5b945
10 changed files with 42 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -1,3 +1,8 @@
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.

View File

@ -1,3 +1,8 @@
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.

View File

@ -1,3 +1,8 @@
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.

View File

@ -1,3 +1,8 @@
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.

View File

@ -1,3 +1,8 @@
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.

View File

@ -1,3 +1,8 @@
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.

View File

@ -1,3 +1,8 @@
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.

View File

@ -236,7 +236,7 @@ g_ptr_array_remove_index (GPtrArray* farray,
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];

View File

@ -236,7 +236,7 @@ g_ptr_array_remove_index (GPtrArray* farray,
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];