Skip to content

Commit 3ee7e55

Browse files
committed
Modify 'q_remove_head'
Correct the node that needs to be remove. Change-Id: I93f907428eaf695d93b38f0b9b694882b6ea1711
1 parent b25bb89 commit 3ee7e55

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

queue.c

+15-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,21 @@ bool q_insert_tail(struct list_head *head, char *s)
124124
/* Remove an element from head of queue */
125125
element_t *q_remove_head(struct list_head *head, char *sp, size_t bufsize)
126126
{
127-
return q_remove(head, sp, bufsize);
127+
// return q_remove(head, sp, bufsize);
128+
if (!head || list_empty(head))
129+
return NULL;
130+
131+
element_t *tmp = list_entry(head->next, element_t, list);
132+
133+
if (!tmp)
134+
return NULL;
135+
if (sp) {
136+
strncpy(sp, list_entry(head->next, element_t, list)->value, bufsize);
137+
sp[bufsize - 1] = '\0';
138+
}
139+
140+
list_del_init(head->next);
141+
return tmp;
128142
}
129143

130144
/* Remove an element from tail of queue */

0 commit comments

Comments
 (0)