aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llxfer.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:50 -0500
committerJacek Antonelli2008-08-15 23:44:50 -0500
commit89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch)
treebcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/llmessage/llxfer.cpp
parentSecond Life viewer sources 1.13.3.2 (diff)
downloadmeta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz
Second Life viewer sources 1.14.0.0
Diffstat (limited to 'linden/indra/llmessage/llxfer.cpp')
-rw-r--r--linden/indra/llmessage/llxfer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llmessage/llxfer.cpp b/linden/indra/llmessage/llxfer.cpp
index f02d106..507b820 100644
--- a/linden/indra/llmessage/llxfer.cpp
+++ b/linden/indra/llmessage/llxfer.cpp
@@ -135,7 +135,7 @@ S32 LLXfer::receiveData (char *datap, S32 data_size)
135 { 135 {
136 if (datap != NULL) 136 if (datap != NULL)
137 { 137 {
138 memcpy(&mBuffer[mBufferLength],datap,data_size); 138 memcpy(&mBuffer[mBufferLength],datap,data_size); /*Flawfinder: ignore*/
139 mBufferLength += data_size; 139 mBufferLength += data_size;
140 } 140 }
141 else 141 else
@@ -212,7 +212,7 @@ void LLXfer::sendPacket(S32 packet_num)
212 num_copy = llmin(num_copy, (S32)(mBufferLength - desired_read_position)); 212 num_copy = llmin(num_copy, (S32)(mBufferLength - desired_read_position));
213 if (num_copy > 0) 213 if (num_copy > 0)
214 { 214 {
215 memcpy(fdata_buf,&mBuffer[desired_read_position],num_copy); 215 memcpy(fdata_buf,&mBuffer[desired_read_position],num_copy); /*Flawfinder: ignore*/
216 } 216 }
217 } 217 }
218 else 218 else
@@ -225,7 +225,7 @@ void LLXfer::sendPacket(S32 packet_num)
225 (S32)(mBufferLength - desired_read_position)); 225 (S32)(mBufferLength - desired_read_position));
226 if (num_copy > 0) 226 if (num_copy > 0)
227 { 227 {
228 memcpy( 228 memcpy( /*Flawfinder: ignore*/
229 fdata_buf + sizeof(S32), 229 fdata_buf + sizeof(S32),
230 &mBuffer[desired_read_position], 230 &mBuffer[desired_read_position],
231 num_copy); 231 num_copy);