Skip to content

Commit 863d62a

Browse files
committed
More poisoning
1 parent 9006b8d commit 863d62a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Zend/zend_alloc.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2058,13 +2058,11 @@ static void *zend_mm_alloc_huge(zend_mm_heap *heap, size_t size ZEND_FILE_LINE_D
20582058
#endif
20592059
return ptr;
20602060
}
2061-
#include <execinfo.h>
20622061

20632062
static void zend_mm_free_huge(zend_mm_heap *heap, void *ptr ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
20642063
{
20652064
printf("Freeing huge %p\n", ptr);
2066-
void *buffer[1000];
2067-
backtrace_symbols_fd(buffer, 1000, 1);
2065+
abort();
20682066

20692067
size_t size;
20702068

0 commit comments

Comments
 (0)