mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/15305] Throw exception if stream_copy_to_stream() fail
PHPBB3-15305
This commit is contained in:
@@ -229,6 +229,9 @@ class local implements adapter_interface, stream_interface
|
||||
throw new exception('STORAGE_CANNOT_CREATE_FILE', $path);
|
||||
}
|
||||
|
||||
stream_copy_to_stream($resource, $stream);
|
||||
if (stream_copy_to_stream($resource, $stream) === false)
|
||||
{
|
||||
throw new exception('STORAGE_CANNOT_COPY_RESOURCE');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user