j
k
j a
j l
Nikolay Sivov bunglehead@gmail.com writes:
+/* free all nodes including argument */ +void free_path_list(path_list_node_t *node) +{ path_list_node_t *n = node; while(!n){ GdipFree(node); node = n = n->next; }
+/* free all nodes including argument */ +void free_path_list(path_list_node_t *node) +{
GdipFree(node);
node = n = n->next;
This won't do what you want.
Back to the thread
Back to the list