mirror of
https://github.com/fluencelabs/redis
synced 2025-04-13 20:56:03 +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;
|
l->len += o->len;
|
||||||
|
|
||||||
/* Setup other as an empty list. */
|
/* Setup other as an empty list. */
|
||||||
o->head = l->tail = NULL;
|
o->head = o->tail = NULL;
|
||||||
o->len = 0;
|
o->len = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user