| 152 | } |
| 153 | |
| 154 | void |
| 155 | mac_inpcb_destroy(struct inpcb *inp) |
| 156 | { |
| 157 | |
| 158 | if (inp->inp_label != NULL) { |
| 159 | mac_inpcb_label_free(inp->inp_label); |
| 160 | inp->inp_label = NULL; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | static void |
| 165 | mac_ipq_label_free(struct label *label) |
no test coverage detected