diff options
Diffstat (limited to 'linden/indra/lscript/lscript_compile/lscript_heap.cpp')
-rw-r--r-- | linden/indra/lscript/lscript_compile/lscript_heap.cpp | 4 |
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 | ||
54 | void LLScriptHeapEntry::addString(char *string) | 54 | void 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++; |