Skip to content

Commit 56abfd2

Browse files
committed
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix arginfo for bzcompress
2 parents dd0fb4f + e20baee commit 56abfd2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ PHP NEWS
55
- Core:
66
. Fixed bug #72443 (Generate enabled extension). (petk)
77

8+
- Bz2:
9+
. Fixed arginfo for bzcompress. (Tyson Andre)
10+
811
- gettext:
912
. Fixed bug #76517 (incorrect restoring of LDFLAGS). (sji)
1013

ext/bz2/bz2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_bzerror, 0)
7575
ZEND_ARG_INFO(0, bz)
7676
ZEND_END_ARG_INFO()
7777

78-
ZEND_BEGIN_ARG_INFO_EX(arginfo_bzcompress, 0, 0, 2)
78+
ZEND_BEGIN_ARG_INFO_EX(arginfo_bzcompress, 0, 0, 1)
7979
ZEND_ARG_INFO(0, source)
8080
ZEND_ARG_INFO(0, blocksize)
8181
ZEND_ARG_INFO(0, workfactor)

0 commit comments

Comments
 (0)