We want the next and prev pointer of the inserted link to be NULL.

2000-03-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
	want the next and prev pointer of the inserted link to be NULL.
This commit is contained in:
Sebastian Wilhelmi 2000-03-13 16:49:40 +00:00 committed by Sebastian Wilhelmi
parent 8fded00959
commit 3540769b17
10 changed files with 48 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
want the next and prev pointer of the inserted link to be NULL.
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search

View File

@ -1,3 +1,8 @@
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
want the next and prev pointer of the inserted link to be NULL.
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search

View File

@ -1,3 +1,8 @@
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
want the next and prev pointer of the inserted link to be NULL.
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search

View File

@ -1,3 +1,8 @@
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
want the next and prev pointer of the inserted link to be NULL.
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search

View File

@ -1,3 +1,8 @@
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
want the next and prev pointer of the inserted link to be NULL.
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search

View File

@ -1,3 +1,8 @@
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
want the next and prev pointer of the inserted link to be NULL.
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search

View File

@ -1,3 +1,8 @@
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
want the next and prev pointer of the inserted link to be NULL.
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search

View File

@ -1,3 +1,8 @@
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
want the next and prev pointer of the inserted link to be NULL.
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search

View File

@ -87,8 +87,8 @@ g_queue_push_head_link (GQueue *queue,
{
g_return_if_fail (queue != NULL);
g_return_if_fail (link != NULL);
g_return_if_fail (link->prev != NULL);
g_return_if_fail (link->next != NULL);
g_return_if_fail (link->prev == NULL);
g_return_if_fail (link->next == NULL);
link->next = queue->head;
if (queue->head)
@ -119,8 +119,8 @@ g_queue_push_tail_link (GQueue *queue,
{
g_return_if_fail (queue != NULL);
g_return_if_fail (link != NULL);
g_return_if_fail (link->prev != NULL);
g_return_if_fail (link->next != NULL);
g_return_if_fail (link->prev == NULL);
g_return_if_fail (link->next == NULL);
link->prev = queue->tail;
if (queue->tail)

View File

@ -87,8 +87,8 @@ g_queue_push_head_link (GQueue *queue,
{
g_return_if_fail (queue != NULL);
g_return_if_fail (link != NULL);
g_return_if_fail (link->prev != NULL);
g_return_if_fail (link->next != NULL);
g_return_if_fail (link->prev == NULL);
g_return_if_fail (link->next == NULL);
link->next = queue->head;
if (queue->head)
@ -119,8 +119,8 @@ g_queue_push_tail_link (GQueue *queue,
{
g_return_if_fail (queue != NULL);
g_return_if_fail (link != NULL);
g_return_if_fail (link->prev != NULL);
g_return_if_fail (link->next != NULL);
g_return_if_fail (link->prev == NULL);
g_return_if_fail (link->next == NULL);
link->prev = queue->tail;
if (queue->tail)