This commit is contained in:
Nikita Popov 2020-08-13 11:45:05 +02:00
parent 981af26d7b
commit 8bda799d6f
4 changed files with 9 additions and 3 deletions

4
NEWS
View File

@ -39,6 +39,10 @@ PHP NEWS
. Fixed bug #64705 (errorInfo property of PDOException is null when
PDO::__construct() fails). (Ahmed Abdou)
- Session:
. Fixed bug #79724 (Return type does not match in ext/session/mod_mm.c).
(Nikita)
- Standard:
. Fixed bug #79930 (array_merge_recursive() crashes when called with array
with single reference). (Nikita)

View File

@ -12,10 +12,11 @@ trigger:
- UPGRADING.INTERNALS
jobs:
# We specify --with-mm here, because it cannot be used together with --enable-maintainer-zts.
- template: azure/job.yml
parameters:
configurationName: DEBUG_NTS
configurationParameters: '--enable-debug --disable-maintainer-zts'
configurationParameters: '--enable-debug --disable-maintainer-zts --with-mm'
- template: azure/job.yml
parameters:
configurationName: RELEASE_ZTS
@ -36,7 +37,7 @@ jobs:
- template: azure/job.yml
parameters:
configurationName: RELEASE_NTS
configurationParameters: '--disable-debug --disable-maintainer-zts'
configurationParameters: '--disable-debug --disable-maintainer-zts --with-mm'
- template: azure/i386/job.yml
parameters:
configurationName: I386_DEBUG_NTS

View File

@ -34,6 +34,7 @@ steps:
libldap2-dev \
libsodium-dev \
libargon2-0-dev \
libmm-dev \
postgresql \
postgresql-contrib \
llvm \

View File

@ -466,7 +466,7 @@ PS_GC_FUNC(mm)
mm_unlock(data->mm);
return nrdels;
return *nrdels;
}
PS_CREATE_SID_FUNC(mm)