Merge branch 'PHP-5.3' into PHP-5.4

This commit is contained in:
Xinchen Hui 2012-09-18 10:48:16 +08:00
commit e2d1eecf99

View file

@ -7,7 +7,7 @@ Bug #62839 (curl_copy_handle segfault with CURLOPT_FILE)
<?php
$curl = curl_init();
$fd = fopen('/tmp/test', 'wb');
$fd = tmpfile();
curl_setopt($curl, CURLOPT_FILE, $fd);
curl_copy_handle($curl);