Merge pull request #12945 from owncloud/hhvm-image

HHVM: Do not call filesize(null), this function expects a string.
This commit is contained in:
Morris Jobke 2014-12-18 22:20:56 +01:00
commit 609e10238f
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class OC_Image {
*/
static public function getMimeTypeForFile($filePath) {
// exif_imagetype throws "read error!" if file is less than 12 byte
if (filesize($filePath) > 11) {
if ($filePath !== null && filesize($filePath) > 11) {
$imageType = exif_imagetype($filePath);
} else {
$imageType = false;