aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/lscript/lscript_compile/lscript_heap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/lscript/lscript_compile/lscript_heap.cpp')
-rw-r--r--linden/indra/lscript/lscript_compile/lscript_heap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/lscript/lscript_compile/lscript_heap.cpp b/linden/indra/lscript/lscript_compile/lscript_heap.cpp
index 4adf84a..2cbd6bb 100644
--- a/linden/indra/lscript/lscript_compile/lscript_heap.cpp
+++ b/linden/indra/lscript/lscript_compile/lscript_heap.cpp
@@ -53,9 +53,9 @@ LLScriptHeapEntry::~LLScriptHeapEntry()
53 53
54void LLScriptHeapEntry::addString(char *string) 54void LLScriptHeapEntry::addString(char *string)
55{ 55{
56 S32 size = strlen(string) + 1; 56 S32 size = strlen(string) + 1; /*Flawfinder: ignore*/
57 S32 offset = 0; 57 S32 offset = 0;
58 memcpy(mData, string, size); 58 memcpy(mData, string, size); /*Flawfinder: ignore*/
59 mNext += size; 59 mNext += size;
60 integer2bytestream(mEntry, offset, mNext); 60 integer2bytestream(mEntry, offset, mNext);
61 mRefCount++; 61 mRefCount++;