* When the memory is released, the release mark is * set in the corresponding range of the shadow area. */
| 161 | * set in the corresponding range of the shadow area. |
| 162 | */ |
| 163 | static inline void |
| 164 | asan_set_freezone(void *ptr, size_t size) |
| 165 | { |
| 166 | asan_set_zone(ptr, size, ASAN_MEM_FREE_FLAG); |
| 167 | } |
| 168 | |
| 169 | /* |
| 170 | * When the memory is allocated, memory state must set as accessible. |
no test coverage detected