Do not call filesize(null), this function expects a string.

filesize(null) yields an int on HHVM and thus exif_imagetype(null) is called.
remotes/origin/fix-10825
Andreas Fischer 12 years ago
parent 10a0fc2856
commit 3ebb69944b
  1. 2
      lib/private/image.php

@ -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;

Loading…
Cancel
Save