- Fixed bug #47667 (ZipArchive::OVERWRITE seems to have no effect). (Mikko,Pierre)
- Fixed bug #47639 (pg_copy_from() WARNING: nonstandard use of \\ in a string
literal). (Ilia)
+- Fixed bug #47616 (curl keeps crashing). (Felipe)
- Fixed bug #47598 (FILTER_VALIDATE_EMAIL is locale aware). (Ilia)
- Fixed bug #47546 (Default value for limit parameter in explode is 0, not -1).
(Kalle)
} else {
#if LIBCURL_VERSION_NUM >= 0x071101
/* with curl 7.17.0 and later, we can use COPYPOSTFIELDS, but we have to provide size before */
+ convert_to_string_ex(zvalue);
error = curl_easy_setopt(ch->cp, CURLOPT_POSTFIELDSIZE, Z_STRLEN_PP(zvalue));
error = curl_easy_setopt(ch->cp, CURLOPT_COPYPOSTFIELDS, Z_STRVAL_PP(zvalue));
#else