1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
--TEST--
Passing empty filename to exif_read_data() and exif_thumnail()
--EXTENSIONS--
exif
--FILE--
<?php
try {
exif_read_data("");
} catch (ValueError $e) {
echo $e->getMessage(), "\n";
}
try {
exif_thumbnail("");
} catch (ValueError $e) {
echo $e->getMessage(), "\n";
}
try {
exif_read_data("foo\0bar");
} catch (ValueError $e) {
echo $e->getMessage(), "\n";
}
try {
exif_thumbnail("foo\0bar");
} catch (ValueError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
exif_read_data(): Argument #1 ($file) must not be empty
exif_thumbnail(): Argument #1 ($file) must not be empty
exif_read_data(): Argument #1 ($file) must not contain any null bytes
exif_thumbnail(): Argument #1 ($file) must not contain any null bytes
|