mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix #78642: Wrong libiconv version displayed
This commit is contained in:
4
NEWS
4
NEWS
@@ -9,6 +9,10 @@ PHP NEWS
|
||||
. Fixed bug #78632 (method_exists() in php74 works differently from php73 in
|
||||
checking priv. methods). (Nikita)
|
||||
|
||||
- Iconv:
|
||||
. Fixed bug #78642 (Wrong libiconv version displayed). (gedas at martynas,
|
||||
cmb).
|
||||
|
||||
- Pcntl:
|
||||
. Fixed bug #77335 (PHP is preventing SIGALRM from specifying SA_RESTART).
|
||||
(Nikita)
|
||||
|
||||
@@ -281,7 +281,7 @@ PHP_MINIT_FUNCTION(miconv)
|
||||
{
|
||||
static char buf[16];
|
||||
snprintf(buf, sizeof(buf), "%d.%d",
|
||||
((_libiconv_version >> 8) & 0x0f), (_libiconv_version & 0x0f));
|
||||
_libiconv_version >> 8, _libiconv_version & 0xff);
|
||||
version = buf;
|
||||
}
|
||||
#elif HAVE_GLIBC_ICONV
|
||||
|
||||
Reference in New Issue
Block a user