summaryrefslogtreecommitdiff
path: root/indra/llmessage
diff options
context:
space:
mode:
authorVadim Savchuk <vsavchuk@productengine.com>2010-04-21 16:00:12 +0300
committerVadim Savchuk <vsavchuk@productengine.com>2010-04-21 16:00:12 +0300
commit74df84be94b93f6068acd2619859a574343be41d (patch)
tree66a1a681468c98a9341bf99228f8eeb1281bc677 /indra/llmessage
parent6b722079c4207eeb96aef3305ed2538933b06358 (diff)
parent3d313630009366261ab99527fdd6eb7bb5eb5d3c (diff)
Merge from default branch
--HG-- branch : product-engine
Diffstat (limited to 'indra/llmessage')
-rw-r--r--indra/llmessage/llassetstorage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmessage/llassetstorage.cpp b/indra/llmessage/llassetstorage.cpp
index 20d71c6903..bf0ed97143 100644
--- a/indra/llmessage/llassetstorage.cpp
+++ b/indra/llmessage/llassetstorage.cpp
@@ -408,8 +408,8 @@ bool LLAssetStorage::findInStaticVFSAndInvokeCallback(const LLUUID& uuid, LLAsse
if (exists)
{
LLVFile file(mStaticVFS, uuid, type);
- U32 size = exists ? file.getSize() : 0;
- if (size>0)
+ U32 size = file.getSize();
+ if (size > 0)
{
// we've already got the file
if (callback)