Skip to content
Snippets Groups Projects
Commit f2444397 authored by rswindell's avatar rswindell
Browse files

Bugfix: listAddNodes() wasn't setting the node->data field (duh).

parent d1357a40
No related branches found
No related tags found
No related merge requests found
......@@ -386,6 +386,7 @@ list_node_t* listAddNode(link_list_t* list, void* data, list_node_t* after)
return(NULL);
memset(node,0,sizeof(list_node_t));
node->data = data;
return(list_add_node(list,node,after));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment