Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #79724
This commit is contained in:
Nikita Popov 2020-08-13 17:26:20 +02:00
commit c3ddda4e3c
3 changed files with 5 additions and 3 deletions

View file

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

View file

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

View file

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