We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e0f144 + bb34121 commit 6427c4bCopy full SHA for 6427c4b
NEWS
@@ -5,6 +5,8 @@ PHP NEWS
5
- Core:
6
. Fixed bug GH-9323 (Crash in ZEND_RETURN/GC/zend_call_function)
7
(Tim Starling)
8
+ . Fixed bug GH-9361 (Segmentation fault on script exit #9379). (cmb,
9
+ Christian Schneider)
10
11
- DOM:
12
. Fixed bug #79451 (DOMDocument->replaceChild on doctype causes double free).
Zend/zend_alloc_sizes.h
@@ -19,7 +19,7 @@
19
#ifndef ZEND_ALLOC_SIZES_H
20
#define ZEND_ALLOC_SIZES_H
21
22
-#define ZEND_MM_CHUNK_SIZE (2 * 1024 * 1024) /* 2 MB */
+#define ZEND_MM_CHUNK_SIZE ((size_t) (2 * 1024 * 1024)) /* 2 MB */
23
#define ZEND_MM_PAGE_SIZE (4 * 1024) /* 4 KB */
24
#define ZEND_MM_PAGES (ZEND_MM_CHUNK_SIZE / ZEND_MM_PAGE_SIZE) /* 512 */
25
#define ZEND_MM_FIRST_PAGE (1)
0 commit comments