* Free an audit pipe entry. */
| 260 | * Free an audit pipe entry. |
| 261 | */ |
| 262 | static void |
| 263 | audit_pipe_entry_free(struct audit_pipe_entry *ape) |
| 264 | { |
| 265 | |
| 266 | free(ape->ape_record, M_AUDIT_PIPE_ENTRY); |
| 267 | free(ape, M_AUDIT_PIPE_ENTRY); |
| 268 | } |
| 269 | |
| 270 | /* |
| 271 | * Find an audit pipe preselection specification for an auid, if any. |
no test coverage detected