1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 01:18:19 +02:00

Merge branch 'PHP-5.3' into PHP-5.4

This commit is contained in:
Xinchen Hui
2012-09-18 10:48:16 +08:00
+1 -1
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);