| 74 | } |
| 75 | |
| 76 | static void block_overflow1() { |
| 77 | uint8_t* p = (uint8_t*)mi_malloc(17); |
| 78 | p[18] = 0; |
| 79 | free(p); |
| 80 | } |
| 81 | |
| 82 | // The double free samples come ArcHeap [1] by Insu Yun (issue #161) |
| 83 | // [1]: https://arxiv.org/pdf/1903.00503.pdf |
nothing calls this directly
no test coverage detected