diff options
author | Callum Prentice <callum@lindenlab.com> | 2021-05-11 12:58:05 -0700 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2021-05-11 12:58:05 -0700 |
commit | 3898609ae24e7787d6f6ae71c2424b43102326bf (patch) | |
tree | 0efa9851df689ff39c5034dc57db647f0a5ba7e0 /indra/llfilesystem/lldiskcache.cpp | |
parent | 99b99a1b4a21758ef888b251d8f8bbf565f8b42e (diff) |
Fix for SL-15226 Simple cache viewer: Integer overflow in cache size - via FS:Ansariel
Diffstat (limited to 'indra/llfilesystem/lldiskcache.cpp')
-rw-r--r-- | indra/llfilesystem/lldiskcache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llfilesystem/lldiskcache.cpp b/indra/llfilesystem/lldiskcache.cpp index c9f7684b5a..241c46dc73 100644 --- a/indra/llfilesystem/lldiskcache.cpp +++ b/indra/llfilesystem/lldiskcache.cpp @@ -40,7 +40,7 @@ #include "lldiskcache.h" LLDiskCache::LLDiskCache(const std::string cache_dir, - const int max_size_bytes, + const uintmax_t max_size_bytes, const bool enable_cache_debug_info) : mCacheDir(cache_dir), mMaxSizeBytes(max_size_bytes), |