summaryrefslogtreecommitdiff
path: root/indra/llmessage/lltemplatemessagebuilder.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2010-03-23 11:29:12 -0700
committerRichard Linden <none@none>2010-03-23 11:29:12 -0700
commit3d977127559280bf37a89714893a13eb288e634f (patch)
tree2df7dde6f77d86428f6a3e8da66e6e60bac023db /indra/llmessage/lltemplatemessagebuilder.cpp
parent07bc1f0ba52cfcd107f6cf12ab4e5372640b2143 (diff)
parentb30488f9eeba8b2f8744196c8468925f6268f462 (diff)
merge
Diffstat (limited to 'indra/llmessage/lltemplatemessagebuilder.cpp')
-rw-r--r--indra/llmessage/lltemplatemessagebuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/lltemplatemessagebuilder.cpp b/indra/llmessage/lltemplatemessagebuilder.cpp
index 55379fc6fd..fa02456d90 100644
--- a/indra/llmessage/lltemplatemessagebuilder.cpp
+++ b/indra/llmessage/lltemplatemessagebuilder.cpp
@@ -326,7 +326,7 @@ void LLTemplateMessageBuilder::addData(const char *varname, const void *data, EM
<< "(" << size << "). Clamping size and truncating data." << llendl;
size = 255;
char *truncate = (char *)data;
- truncate[255] = 0;
+ truncate[254] = 0; // array size is 255 but the last element index is 254
}
// no correct size for MVT_VARIABLE, instead we need to tell how many bytes the size will be encoded as