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

Commit

Permalink
Merge branch 'hotfix/3313'
Browse files Browse the repository at this point in the history
Close #3313
  • Loading branch information
weierophinney committed Jan 4, 2013
2 parents 5b80e06 + 7aa706c commit dbf70ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Cache/Storage/Adapter/Apc.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public function getOptions()
*/
public function getTotalSpace()
{
if ($this->totalSpace !== null) {
if ($this->totalSpace === null) {
$smaInfo = apc_sma_info(true);
$this->totalSpace = $smaInfo['num_seg'] * $smaInfo['seg_size'];
}
Expand Down

0 comments on commit dbf70ff

Please sign in to comment.