标签: tcache

1 篇文章

tcache_perthread_struct hijack
2.39 malloc.c 中的源代码: typedef struct tcache_entry{  struct tcache_entry *next;  /* This field exists to detect double frees. */  uintptr_t key; // uintptr_t 就是 unsigned int,2.2…