summaryrefslogtreecommitdiff
path: root/src/common/dllist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/dllist.c')
-rw-r--r--src/common/dllist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/dllist.c b/src/common/dllist.c
index 10f73e1..7e56bf4 100644
--- a/src/common/dllist.c
+++ b/src/common/dllist.c
@@ -45,11 +45,11 @@
void __dl_list_add(dl_list_item *new, dl_list_head *head, dl_list_item *prev, dl_list_item *next)
{
- if (prev != NULL) prev->next = new;
+ prev->next = new;
new->prev = prev;
new->next = next;
- if (next != NULL) next->prev = new;
+ next->prev = new;
if (*head == NULL)
*head = new;