summaryrefslogtreecommitdiff
path: root/indra/newview/lleventinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/lleventinfo.cpp')
-rw-r--r--indra/newview/lleventinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lleventinfo.cpp b/indra/newview/lleventinfo.cpp
index 8f63b61fa1..6bfc04a323 100644
--- a/indra/newview/lleventinfo.cpp
+++ b/indra/newview/lleventinfo.cpp
@@ -52,7 +52,7 @@ void LLEventInfo::unpack(LLMessageSystem *msg)
msg->getU32("EventData", "EventID", event_id);
mID = event_id;
- char buffer[MAX_DESC_LENGTH];
+ char buffer[MAX_DESC_LENGTH]; /*Flawfinder: ignore*/
msg->getString("EventData", "Name", MAX_DESC_LENGTH, buffer);
mName = buffer;
@@ -87,7 +87,7 @@ void LLEventInfo::unpack(LLMessageSystem *msg)
mCover = cover;
}
- char sim_name[256];
+ char sim_name[256]; /*Flawfinder: ignore*/
msg->getString("EventData", "SimName", 256, sim_name);
mSimName.assign(sim_name);