mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
f3c58a5ed6
Not all extensions consistently throw exceptions when the user passes a path name containing null bytes. Also, some extensions would throw a ValueError while others would throw a TypeError. Error messages also varied. Now a ValueError is thrown after all failed path checks, at least for as far as these occur in functions that are exposed to userland. Closes GH-6216.
26 lines
573 B
PHP
26 lines
573 B
PHP
--TEST--
|
|
DomDocument::schemaValidate() - invalid path to schema
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$doc = new DOMDocument;
|
|
|
|
$doc->load(__DIR__."/book.xml");
|
|
|
|
try {
|
|
$doc->schemaValidate("/path/with/\0/byte");
|
|
} catch (ValueError $e) {
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
|
|
var_dump($doc->schemaValidate(str_repeat(" ", PHP_MAXPATHLEN + 1)));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
DOMDocument::schemaValidate(): Argument #1 ($filename) must not contain any null bytes
|
|
|
|
Warning: DOMDocument::schemaValidate(): Invalid Schema file source in %s on line %d
|
|
bool(false)
|