strict check
authorChristian Grothoff <christian@grothoff.org>
Sun, 15 Aug 2010 14:05:47 +0000 (14:05 +0000)
committerChristian Grothoff <christian@grothoff.org>
Sun, 15 Aug 2010 14:05:47 +0000 (14:05 +0000)
src/statistics/gnunet-service-statistics.c

index 823dc419ee0604cc73ad284fa20e75e36fb764aa..91c62a64b3488a6098f29e24799a47c86bc23c70 100644 (file)
@@ -329,8 +329,7 @@ make_client_entry (struct GNUNET_SERVER_Client *client)
 {
   struct ClientEntry *ce;
 
-  if (client == NULL)
-    return NULL;
+  GNUNET_assert (client != NULL);
   ce = client_head;
   while (ce != NULL)
     {