mirror of
https://github.com/fluencelabs/redis
synced 2025-03-17 16:10:50 +00:00
Merge pull request #4106 from petersunbag/unstable
minor fix in listJoin().
This commit is contained in:
commit
2d5aa00959
@ -357,6 +357,6 @@ void listJoin(list *l, list *o) {
|
||||
l->len += o->len;
|
||||
|
||||
/* Setup other as an empty list. */
|
||||
o->head = l->tail = NULL;
|
||||
o->head = o->tail = NULL;
|
||||
o->len = 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user