27 lines
571 B
PHP
27 lines
571 B
PHP
--TEST--
|
|
Bug #80121: Null pointer deref if CurlHandle directly instantiated
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
new CurlHandle;
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
new CurlMultiHandle;
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
new CurlShareHandle;
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Cannot directly construct CurlHandle, use curl_init() instead
|
|
Cannot directly construct CurlMultiHandle, use curl_multi_init() instead
|
|
Cannot directly construct CurlShareHandle, use curl_share_init() instead
|