mirror of
https://github.com/php/php-src.git
synced 2024-12-13 03:44:17 +08:00
37 lines
841 B
PHP
37 lines
841 B
PHP
--TEST--
|
|
Bug #48203 (Crash when CURLOPT_STDERR is set to regular file)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("curl")) {
|
|
exit("skip curl extension not loaded");
|
|
}
|
|
if (false === getenv('PHP_CURL_HTTP_REMOTE_SERVER')) {
|
|
exit("skip PHP_CURL_HTTP_REMOTE_SERVER env variable is not defined");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$fp = fopen(dirname(__FILE__) . '/bug48203.tmp', 'w');
|
|
|
|
$ch = curl_init();
|
|
|
|
curl_setopt($ch, CURLOPT_VERBOSE, 1);
|
|
curl_setopt($ch, CURLOPT_STDERR, $fp);
|
|
curl_setopt($ch, CURLOPT_URL, getenv('PHP_CURL_HTTP_REMOTE_SERVER'));
|
|
|
|
fclose($fp); // <-- premature close of $fp caused a crash!
|
|
|
|
curl_exec($ch);
|
|
curl_close($ch);
|
|
|
|
echo "Ok\n";
|
|
|
|
?>
|
|
--CLEAN--
|
|
<?php @unlink(dirname(__FILE__) . '/bug48203.tmp'); ?>
|
|
--EXPECTF--
|
|
Warning: curl_exec(): CURLOPT_STDERR resource has gone away, resetting to stderr in %sbug48203.php on line %d
|
|
%A
|
|
Ok
|