Skip to content
Snippets Groups Projects
Commit fe931be1 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Cap max file size for LLFileSystem to 50mb

parent 98742436
No related branches found
No related tags found
No related merge requests found
......@@ -256,8 +256,8 @@ S32 LLFileSystem::getSize()
S32 LLFileSystem::getMaxSize()
{
// offer up a huge size since we don't care what the max is
return INT_MAX;
// Max size at 50mb to avoid error conditions resulting in huge files on disk
return 52428800;
}
BOOL LLFileSystem::rename(const LLUUID& new_id, const LLAssetType::EType new_type)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment