git @ Cat's Eye Technologies OpenZz / 3bfe356
`man cfree` leads me to believe that cfree() is not a thing. Cat's Eye Technologies 11 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
6969 {printf("Internal error - delete_list; argument must be LIST\n");exit(1);}
7070 lst = (struct s_list *) s_content_value(*cnt);
7171 list_mem -= sizeof(*lst) +lst->size*sizeof(struct s_content);
72 cfree(lst->array);
73 cfree(lst);
72 free(lst->array);
73 free(lst);
7474 cnt->tag=0;
7575 s_content_value(*cnt)=0;
7676 }