use isset to prevent undefined index

This commit is contained in:
Thomas Müller 2013-08-05 13:51:45 +02:00
parent bf1a9dfae3
commit 464afb5eca
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class Scanner extends BasicEmitter {
$newData = $data;
if ($reuseExisting and $cacheData = $this->cache->get($file)) {
// only reuse data if the file hasn't explicitly changed
if ($data['mtime'] === $cacheData['mtime']) {
if (isset($data['mtime']) && isset($cacheData['mtime']) && $data['mtime'] === $cacheData['mtime']) {
if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) {
$data['size'] = $cacheData['size'];
}