From 2485b15112d08de613f373ce9ba3f451a53677b2 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Wed, 25 Jan 2012 14:23:46 +0000 Subject: [PATCH] - clangs --- src/ats/gnunet-service-ats_scheduling.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ats/gnunet-service-ats_scheduling.c b/src/ats/gnunet-service-ats_scheduling.c index 2d5a354e8..72b72cd3e 100644 --- a/src/ats/gnunet-service-ats_scheduling.c +++ b/src/ats/gnunet-service-ats_scheduling.c @@ -240,12 +240,13 @@ GAS_handle_address_update (void *cls, struct GNUNET_SERVER_Client *client, plugin_name = &address[address_length]; else plugin_name = ""; + if ((address_length + plugin_name_length + ats_count * sizeof (struct GNUNET_ATS_Information) + sizeof (struct AddressUpdateMessage) != ntohs (message->size)) || (ats_count > - GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_ATS_Information)) - || (plugin_name[plugin_name_length - 1] != '\0')) + GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_ATS_Information)) || + ((plugin_name_length > 0) && (plugin_name[plugin_name_length - 1] != '\0'))) { GNUNET_break (0); GNUNET_SERVER_receive_done (client, GNUNET_SYSERR); -- 2.25.1