@@ -992,9 +992,9 @@ static void *zend_mm_alloc_pages(zend_mm_heap *heap, uint32_t pages_count ZEND_F
992
992
#if !ZEND_MM_LIMIT
993
993
zend_mm_safe_error (heap , "Out of memory" );
994
994
#elif ZEND_DEBUG
995
- zend_mm_safe_error (heap , "Out of memory (allocated %zu) at %s:%d (tried to allocate %zu bytes)" , heap -> real_size , __zend_filename , __zend_lineno , size );
995
+ zend_mm_safe_error (heap , "Out of memory (allocated %zu bytes ) at %s:%d (tried to allocate %zu bytes)" , heap -> real_size , __zend_filename , __zend_lineno , size );
996
996
#else
997
- zend_mm_safe_error (heap , "Out of memory (allocated %zu) (tried to allocate %zu bytes)" , heap -> real_size , ZEND_MM_PAGE_SIZE * pages_count );
997
+ zend_mm_safe_error (heap , "Out of memory (allocated %zu bytes ) (tried to allocate %zu bytes)" , heap -> real_size , ZEND_MM_PAGE_SIZE * pages_count );
998
998
#endif
999
999
return NULL ;
1000
1000
}
@@ -1810,9 +1810,9 @@ static void *zend_mm_alloc_huge(zend_mm_heap *heap, size_t size ZEND_FILE_LINE_D
1810
1810
#if !ZEND_MM_LIMIT
1811
1811
zend_mm_safe_error (heap , "Out of memory" );
1812
1812
#elif ZEND_DEBUG
1813
- zend_mm_safe_error (heap , "Out of memory (allocated %zu) at %s:%d (tried to allocate %zu bytes)" , heap -> real_size , __zend_filename , __zend_lineno , size );
1813
+ zend_mm_safe_error (heap , "Out of memory (allocated %zu bytes ) at %s:%d (tried to allocate %zu bytes)" , heap -> real_size , __zend_filename , __zend_lineno , size );
1814
1814
#else
1815
- zend_mm_safe_error (heap , "Out of memory (allocated %zu) (tried to allocate %zu bytes)" , heap -> real_size , size );
1815
+ zend_mm_safe_error (heap , "Out of memory (allocated %zu bytes ) (tried to allocate %zu bytes)" , heap -> real_size , size );
1816
1816
#endif
1817
1817
return NULL ;
1818
1818
}
0 commit comments