| 66 | |
| 67 | |
| 68 | void free_to_params(struct to_body* tb) |
| 69 | { |
| 70 | struct to_param *tp=tb->param_lst; |
| 71 | struct to_param *foo; |
| 72 | while (tp){ |
| 73 | foo = tp->next; |
| 74 | pkg_free(tp); |
| 75 | tp=foo; |
| 76 | } |
| 77 | |
| 78 | tb->param_lst = tb->last_param = NULL; |
| 79 | } |
| 80 | |
| 81 | |
| 82 | void free_to(struct to_body* tb) |
no outgoing calls
no test coverage detected