aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api_core.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/transport/transport_api_core.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/transport/transport_api_core.c')
-rw-r--r--src/transport/transport_api_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/transport_api_core.c b/src/transport/transport_api_core.c
index 3150e6deb..de18b7339 100644
--- a/src/transport/transport_api_core.c
+++ b/src/transport/transport_api_core.c
@@ -894,7 +894,7 @@ GNUNET_TRANSPORT_connecT (const struct GNUNET_CONFIGURATION_Handle *cfg,
894 for (i=0;NULL != handlers[i].cb; i++) ; 894 for (i=0;NULL != handlers[i].cb; i++) ;
895 h->handlers = GNUNET_new_array (i + 1, 895 h->handlers = GNUNET_new_array (i + 1,
896 struct GNUNET_MQ_MessageHandler); 896 struct GNUNET_MQ_MessageHandler);
897 memcpy (h->handlers, 897 GNUNET_memcpy (h->handlers,
898 handlers, 898 handlers,
899 i * sizeof (struct GNUNET_MQ_MessageHandler)); 899 i * sizeof (struct GNUNET_MQ_MessageHandler));
900 } 900 }