Index: src/wp-includes/functions.php
===================================================================
--- src/wp-includes/functions.php	(revision 53351)
+++ src/wp-includes/functions.php	(working copy)
@@ -3503,7 +3503,7 @@
 		return $size;
 	}
 
-	$size = (int) @filesize( $path );
+	$size = is_readable( $path ) ? (int) filesize( $path ) : 0;
 
 	/**
 	 * Filters the size of the file.
