File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ PHP NEWS
21
21
- LiteSpeed:
22
22
. Updated to LiteSpeed SAPI V7.5 (Fixed clean shutdown). (George Wang)
23
23
24
+ - MySQLnd:
25
+ . Fixed bug #78213 (Empty row pocket). (cmb)
26
+
24
27
- Standard:
25
28
. Fixed bug #69100 (Bus error from stream_copy_to_stream (file -> SSL stream)
26
29
with invalid length). (Nikita)
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ mysqlnd_mempool_create(size_t arena_size)
161
161
MYSQLND_MEMORY_POOL * ret ;
162
162
163
163
DBG_ENTER ("mysqlnd_mempool_create" );
164
- arena = mysqlnd_arena_create (MAX (arena_size , sizeof (zend_arena )));
164
+ arena = mysqlnd_arena_create (MAX (arena_size , ZEND_MM_ALIGNED_SIZE ( sizeof (zend_arena ) )));
165
165
ret = mysqlnd_arena_alloc (& arena , sizeof (MYSQLND_MEMORY_POOL ));
166
166
ret -> arena = arena ;
167
167
ret -> last = NULL ;
You can’t perform that action at this time.
0 commit comments