Skip to content

Commit

Permalink
Fixed bug #79724
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Aug 13, 2020
1 parent 981af26 commit 8bda799
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
5 changes: 3 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions azure/apt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ steps:
libldap2-dev \
libsodium-dev \
libargon2-0-dev \
libmm-dev \
postgresql \
postgresql-contrib \
llvm \
Expand Down
2 changes: 1 addition & 1 deletion ext/session/mod_mm.c
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ PS_GC_FUNC(mm)

mm_unlock(data->mm);

return nrdels;
return *nrdels;
}

PS_CREATE_SID_FUNC(mm)
Expand Down

0 comments on commit 8bda799

Please sign in to comment.