* When the memory is allocated, memory state must set as accessible. */
| 170 | * When the memory is allocated, memory state must set as accessible. |
| 171 | */ |
| 172 | static inline void |
| 173 | asan_clear_alloczone(struct malloc_elem *elem) |
| 174 | { |
| 175 | asan_set_zone((void *)elem, elem->size, 0x0); |
| 176 | } |
| 177 | |
| 178 | static inline void |
| 179 | asan_clear_split_alloczone(struct malloc_elem *elem) |
no test coverage detected