mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
Fix tracked_realloc
We should only drop the information about the old allocation after checking the memory limit. This makes the code a bit more awkward...
This commit is contained in:
parent
32315c247f
commit
5db44e39b1
@ -2705,16 +2705,11 @@ static zend_always_inline void tracked_add(zend_mm_heap *heap, void *ptr, size_t
|
||||
zend_hash_index_add_new(heap->tracked_allocs, h, &size_zv);
|
||||
}
|
||||
|
||||
static zend_always_inline size_t tracked_del(zend_mm_heap *heap, void *ptr) {
|
||||
if (!ptr) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
static zend_always_inline zval *tracked_get_size_zv(zend_mm_heap *heap, void *ptr) {
|
||||
zend_ulong h = ((uintptr_t) ptr) >> ZEND_MM_ALIGNMENT_LOG2;
|
||||
zval *size_zv = zend_hash_index_find(heap->tracked_allocs, h);
|
||||
ZEND_ASSERT(size_zv && "Trying to free pointer not allocated through ZendMM");
|
||||
zend_hash_del_bucket(heap->tracked_allocs, (Bucket *) size_zv);
|
||||
return Z_LVAL_P(size_zv);
|
||||
return size_zv;
|
||||
}
|
||||
|
||||
static zend_always_inline void tracked_check_limit(zend_mm_heap *heap, size_t add_size) {
|
||||
@ -2743,18 +2738,35 @@ static void *tracked_malloc(size_t size)
|
||||
}
|
||||
|
||||
static void tracked_free(void *ptr) {
|
||||
if (!ptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
zend_mm_heap *heap = AG(mm_heap);
|
||||
heap->size -= tracked_del(heap, ptr);
|
||||
zval *size_zv = tracked_get_size_zv(heap, ptr);
|
||||
heap->size -= Z_LVAL_P(size_zv);
|
||||
zend_hash_del_bucket(heap->tracked_allocs, (Bucket *) size_zv);
|
||||
free(ptr);
|
||||
}
|
||||
|
||||
static void *tracked_realloc(void *ptr, size_t new_size) {
|
||||
zend_mm_heap *heap = AG(mm_heap);
|
||||
size_t old_size = tracked_del(heap, ptr);
|
||||
zval *old_size_zv = NULL;
|
||||
size_t old_size = 0;
|
||||
if (ptr) {
|
||||
old_size_zv = tracked_get_size_zv(heap, ptr);
|
||||
old_size = Z_LVAL_P(old_size_zv);
|
||||
}
|
||||
|
||||
if (new_size > old_size) {
|
||||
tracked_check_limit(heap, new_size - old_size);
|
||||
}
|
||||
|
||||
/* Delete information about old allocation only after checking the memory limit. */
|
||||
if (old_size_zv) {
|
||||
zend_hash_del_bucket(heap->tracked_allocs, (Bucket *) old_size_zv);
|
||||
}
|
||||
|
||||
ptr = __zend_realloc(ptr, new_size);
|
||||
tracked_add(heap, ptr, new_size);
|
||||
heap->size += new_size - old_size;
|
||||
|
Loading…
Reference in New Issue
Block a user