Skip to content
Snippets Groups Projects
Commit d96611a7 authored by Anjan Chanda's avatar Anjan Chanda
Browse files

init fraglist list head in cmdu_realloc()

parent 073c283a
No related branches found
No related tags found
No related merge requests found
......@@ -352,6 +352,9 @@ struct cmdu_buff *cmdu_realloc(struct cmdu_buff *c, size_t size)
f->cdata = cdata_off ? (struct cmdu_linear *)(n + cdata_off) : NULL;
f->end = f->head + size;
/* TODO: reconstruct fraglist */
INIT_LIST_HEAD(&f->fraglist);
return f;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment