Commit 2d5aa009 authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo Committed by GitHub
Browse files

Merge pull request #4106 from petersunbag/unstable

minor fix in listJoin().
parents 2b36950e 87f771bf
...@@ -357,6 +357,6 @@ void listJoin(list *l, list *o) { ...@@ -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;
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment