summaryrefslogtreecommitdiffstats
path: root/net/disk_cache
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-20 01:16:23 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-20 01:16:23 +0000
commit02ee34a9daa91fd125b9f9a48ca56502c8d1d36c (patch)
tree607ac680d8d8d8b39348d8415677e9813d440737 /net/disk_cache
parentc328da8db8cb5c8d9366874c6e23533e9fa82c7e (diff)
downloadchromium_src-02ee34a9daa91fd125b9f9a48ca56502c8d1d36c.zip
chromium_src-02ee34a9daa91fd125b9f9a48ca56502c8d1d36c.tar.gz
chromium_src-02ee34a9daa91fd125b9f9a48ca56502c8d1d36c.tar.bz2
Fix AmountOfFreeDiskSpace to be able to differentiate an error
from a full disk. Review URL: http://codereview.chromium.org/4003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2431 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache')
-rw-r--r--net/disk_cache/mem_backend_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/mem_backend_impl.cc b/net/disk_cache/mem_backend_impl.cc
index cf4a411..4180a9d 100644
--- a/net/disk_cache/mem_backend_impl.cc
+++ b/net/disk_cache/mem_backend_impl.cc
@@ -43,7 +43,7 @@ bool MemBackendImpl::Init() {
int64 total_memory = base::SysInfo::AmountOfPhysicalMemory();
- if (total_memory < 0) {
+ if (total_memory <= 0) {
max_size_ = kDefaultCacheSize;
return true;
}