aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed_api_sd.c
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-12-19 06:00:23 +0000
committerLRN <lrn1986@gmail.com>2013-12-19 06:00:23 +0000
commite0ca7357cd0bfedc5c29cb731b56279fef8da059 (patch)
treeecfd47cf59bc00e656b53fd59c58f5038e342d65 /src/testbed/testbed_api_sd.c
parent92fd84dc7ef98452f848a62677c61a2b80b5835e (diff)
downloadgnunet-e0ca7357cd0bfedc5c29cb731b56279fef8da059.tar.gz
gnunet-e0ca7357cd0bfedc5c29cb731b56279fef8da059.zip
malloc -> new
Diffstat (limited to 'src/testbed/testbed_api_sd.c')
-rw-r--r--src/testbed/testbed_api_sd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testbed/testbed_api_sd.c b/src/testbed/testbed_api_sd.c
index 7a1da6b80..08f697248 100644
--- a/src/testbed/testbed_api_sd.c
+++ b/src/testbed/testbed_api_sd.c
@@ -109,7 +109,7 @@ GNUNET_TESTBED_SD_init_ (unsigned int max_cnt)
109 struct SDHandle *h; 109 struct SDHandle *h;
110 110
111 GNUNET_assert (1 < max_cnt); 111 GNUNET_assert (1 < max_cnt);
112 h = GNUNET_malloc (sizeof (struct SDHandle)); 112 h = GNUNET_new (struct SDHandle);
113 h->max_cnt = max_cnt; 113 h->max_cnt = max_cnt;
114 return h; 114 return h;
115} 115}
@@ -159,7 +159,7 @@ GNUNET_TESTBED_SD_add_data_ (struct SDHandle *h, unsigned int amount)
159 } 159 }
160 GNUNET_assert (h->cnt < h->max_cnt); 160 GNUNET_assert (h->cnt < h->max_cnt);
161 if (NULL == entry) 161 if (NULL == entry)
162 entry = GNUNET_malloc (sizeof (struct SDEntry)); 162 entry = GNUNET_new (struct SDEntry);
163 entry->amount = amount; 163 entry->amount = amount;
164 GNUNET_CONTAINER_DLL_insert_tail (h->head, h->tail, entry); 164 GNUNET_CONTAINER_DLL_insert_tail (h->head, h->tail, entry);
165 h->sum += amount; 165 h->sum += amount;