]> granicus.if.org Git - php/commit
Fixed segfault due to libcurl connection caching
authorPierrick Charron <pierrick@php.net>
Sun, 23 Dec 2012 00:03:24 +0000 (19:03 -0500)
committerPierrick Charron <pierrick@php.net>
Sun, 23 Dec 2012 00:03:24 +0000 (19:03 -0500)
commita2b6d9c1047a4e5f3419ebc3489a66d62aa12d07
treef9c1f7433d2ba0e47485cb3dbe718b3f31951197
parent1c553eba196b823439e69f003e63afd6d202d582
Fixed segfault due to libcurl connection caching

Libcurl is doing connection caching. When easy handle is cleaned up,
if the handle was previously used by the curl_multi_api, the connection
remains open un the curl multi handle is cleaned up. Some protocols are
sending content like the FTP one, and libcurl try to use the
WRITEFUNCTION or the HEADERFUNCTION. Since structures used in those
callback are freed, we need to use an other callback to which avoid
segfaults.

Libcurl commit d021f2e8a00 fix this issue and should be part of 7.28.2
NEWS
ext/curl/interface.c
ext/curl/tests/curl_multi_segfault.phpt [new file with mode: 0644]