| 160 | } |
| 161 | |
| 162 | void zfree_no_tcache(void *ptr) { |
| 163 | if (ptr == NULL) return; |
| 164 | update_zmalloc_stat_free(zmalloc_size(ptr)); |
| 165 | dallocx(ptr, MALLOCX_TCACHE_NONE); |
| 166 | } |
| 167 | #endif |
| 168 | |
| 169 | /* Try allocating memory and zero it, and return NULL if failed. |
no test coverage detected