aboutsummaryrefslogtreecommitdiff
path: root/src/core/test_core_api_reliability.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-07-08 17:20:23 +0000
committerChristian Grothoff <christian@grothoff.org>2016-07-08 17:20:23 +0000
commitd8c53b12a818ff7cf82d06a1a69c395bdef85ee6 (patch)
tree0ebb0db416c157fcfde51a941185819dd12d51fd /src/core/test_core_api_reliability.c
parent5184c17d32a39c928c2a0fec3ee1ad098bbaa562 (diff)
downloadgnunet-d8c53b12a818ff7cf82d06a1a69c395bdef85ee6.tar.gz
gnunet-d8c53b12a818ff7cf82d06a1a69c395bdef85ee6.zip
-avoid calling memcpy() with NULL argument, even if len is 0
Diffstat (limited to 'src/core/test_core_api_reliability.c')
-rw-r--r--src/core/test_core_api_reliability.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/test_core_api_reliability.c b/src/core/test_core_api_reliability.c
index 94c223b74..10cef0e0d 100644
--- a/src/core/test_core_api_reliability.c
+++ b/src/core/test_core_api_reliability.c
@@ -194,7 +194,7 @@ transmit_ready (void *cls,
194 hdr.header.size = htons (s); 194 hdr.header.size = htons (s);
195 hdr.header.type = htons (MTYPE); 195 hdr.header.type = htons (MTYPE);
196 hdr.num = htonl (tr_n); 196 hdr.num = htonl (tr_n);
197 memcpy (&cbuf[ret], &hdr, sizeof (struct TestMessage)); 197 GNUNET_memcpy (&cbuf[ret], &hdr, sizeof (struct TestMessage));
198 ret += sizeof (struct TestMessage); 198 ret += sizeof (struct TestMessage);
199 memset (&cbuf[ret], tr_n, s - sizeof (struct TestMessage)); 199 memset (&cbuf[ret], tr_n, s - sizeof (struct TestMessage));
200 ret += s - sizeof (struct TestMessage); 200 ret += s - sizeof (struct TestMessage);