We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05d6878 commit 195c200Copy full SHA for 195c200
NEWS
@@ -2,6 +2,9 @@ PHP NEWS
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
?? ??? 2019, PHP 7.2.25
4
5
+- Iconv:
6
+ . Fixed bug #78642 (Wrong libiconv version displayed). (gedas at martynas,
7
+ cmb).
8
9
24 Oct 2019, PHP 7.2.24
10
ext/iconv/iconv.c
@@ -286,7 +286,7 @@ PHP_MINIT_FUNCTION(miconv)
286
{
287
static char buf[16];
288
snprintf(buf, sizeof(buf), "%d.%d",
289
- ((_libiconv_version >> 8) & 0x0f), (_libiconv_version & 0x0f));
+ _libiconv_version >> 8, _libiconv_version & 0xff);
290
version = buf;
291
}
292
#elif HAVE_GLIBC_ICONV
0 commit comments