We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 99fe047 + 585131f commit fec71e3Copy full SHA for fec71e3
2 files changed
NEWS
@@ -2,6 +2,9 @@ PHP NEWS
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
?? ??? ????, PHP 7.4.0beta2
4
5
+- Iconv:
6
+ . Fixed bug #78342 (Bus error in configure test for iconv //IGNORE). (Rainer
7
+ Jung)
8
9
25 Jul 2019, PHP 7.4.0beta1
10
ext/iconv/config.m4
@@ -162,6 +162,9 @@ int main() {
162
163
int main() {
164
iconv_t cd = iconv_open( "UTF-8//IGNORE", "UTF-8" );
165
+ if(cd == (iconv_t)-1) {
166
+ return 1;
167
+ }
168
char *in_p = "\xC3\xC3\xC3\xB8";
169
size_t in_left = 4, out_left = 4096;
170
char *out = malloc(out_left);
0 commit comments