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 5649267 commit 30eb4b3Copy full SHA for 30eb4b3
NEWS
@@ -6,6 +6,10 @@ PHP NEWS
6
. Fixed bug #77946 (Bad cURL resources returned by curl_multi_info_read()).
7
(Abyr Valg)
8
9
+- Iconv:
10
+ . Fixed bug #78342 (Bus error in configure test for iconv //IGNORE). (Rainer
11
+ Jung)
12
+
13
- LiteSpeed:
14
. Updated to LiteSpeed SAPI V7.5 (Fixed clean shutdown). (George Wang)
15
ext/iconv/config.m4
@@ -166,6 +166,9 @@ int main() {
166
167
int main() {
168
iconv_t cd = iconv_open( "UTF-8//IGNORE", "UTF-8" );
169
+ if(cd == (iconv_t)-1) {
170
+ return 1;
171
+ }
172
char *in_p = "\xC3\xC3\xC3\xB8";
173
size_t in_left = 4, out_left = 4096;
174
char *out = malloc(out_left);
0 commit comments