* Fills an item with predictable garbage * * Complies with standard init arg/return * */
| 120 | * |
| 121 | */ |
| 122 | int |
| 123 | trash_init(void *mem, int size, int flags) |
| 124 | { |
| 125 | trash_dtor(mem, size, NULL); |
| 126 | return (0); |
| 127 | } |
| 128 | |
| 129 | /* |
| 130 | * Checks an item to make sure it hasn't been overwritten since it was freed. |
no test coverage detected