X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Ftestbed%2Ftestbed_api_sd.c;h=08f697248e797b46dfa020bb57a1e434e434178c;hb=0778d7e951b20f42af01597ae41ba8d2d26857d0;hp=62f358de98c3aac23355937a1652f8875598d4e8;hpb=8830d27022a4c303baab008ad5d4dfeef0c0ee8e;p=oweals%2Fgnunet.git diff --git a/src/testbed/testbed_api_sd.c b/src/testbed/testbed_api_sd.c index 62f358de9..08f697248 100644 --- a/src/testbed/testbed_api_sd.c +++ b/src/testbed/testbed_api_sd.c @@ -21,7 +21,7 @@ /** * @file testbed/testbed_api_sd.c * @brief functions to calculate standard deviation - * @author Sree Harsha Totakura + * @author Sree Harsha Totakura */ #include "platform.h" @@ -109,7 +109,7 @@ GNUNET_TESTBED_SD_init_ (unsigned int max_cnt) struct SDHandle *h; GNUNET_assert (1 < max_cnt); - h = GNUNET_malloc (sizeof (struct SDHandle)); + h = GNUNET_new (struct SDHandle); h->max_cnt = max_cnt; return h; } @@ -159,7 +159,7 @@ GNUNET_TESTBED_SD_add_data_ (struct SDHandle *h, unsigned int amount) } GNUNET_assert (h->cnt < h->max_cnt); if (NULL == entry) - entry = GNUNET_malloc (sizeof (struct SDEntry)); + entry = GNUNET_new (struct SDEntry); entry->amount = amount; GNUNET_CONTAINER_DLL_insert_tail (h->head, h->tail, entry); h->sum += amount;