mirror of
https://github.com/Intervention/image.git
synced 2025-07-31 11:00:12 +02:00
Fix bug
PHP enconters problems on some machines when is_file() in FilePathImageDecoders receive values that are longer than the maximum-path-length of the host. This fix checks if the input is in this maximum path length.
This commit is contained in:
@@ -16,6 +16,10 @@ class FilePathImageDecoder extends BinaryImageDecoder implements DecoderInterfac
|
||||
throw new DecoderException('Unable to decode input');
|
||||
}
|
||||
|
||||
if (strlen($input) > PHP_MAXPATHLEN) {
|
||||
throw new DecoderException('Unable to decode input');
|
||||
}
|
||||
|
||||
try {
|
||||
if (!@is_file($input)) {
|
||||
throw new DecoderException('Unable to decode input');
|
||||
|
@@ -16,6 +16,10 @@ class FilePathImageDecoder extends BinaryImageDecoder implements DecoderInterfac
|
||||
throw new DecoderException('Unable to decode input');
|
||||
}
|
||||
|
||||
if (strlen($input) > PHP_MAXPATHLEN) {
|
||||
throw new DecoderException('Unable to decode input');
|
||||
}
|
||||
|
||||
try {
|
||||
if (!@is_file($input)) {
|
||||
throw new DecoderException('Unable to decode input');
|
||||
|
Reference in New Issue
Block a user