Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

fixed #4552: Wincache::getItem() have to return NULL in cases of missing items #4632

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions library/Zend/Cache/Storage/Adapter/WinCache.php
Expand Up @@ -140,6 +140,8 @@ protected function internalGetItem(& $normalizedKey, & $success = null, & $casTo

if ($success) {
$casToken = $result;
} else {
$result = null;
}

return $result;
Expand Down