File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ static bool doit(int mode)
187
187
int64_t * percentiles = calloc (NUM_PERCENTILES , sizeof (int64_t ));
188
188
189
189
if (!before_ticks || !after_ticks || !exec_times || !classes ||
190
- !input_data ) {
190
+ !input_data || ! percentiles ) {
191
191
die ();
192
192
}
193
193
@@ -213,18 +213,24 @@ static void init_once(void)
213
213
{
214
214
init_dut ();
215
215
for (size_t i = 0 ; i < DUDECT_TESTS ; i ++ ) {
216
- ctxs [i ] = malloc (sizeof (t_context_t ));
217
- t_init (ctxs [i ]);
216
+ /* Check if ctxs[i] is unallocated to prevent repeated memory
217
+ * allocations.
218
+ */
219
+ if (!ctxs [i ]) {
220
+ ctxs [i ] = malloc (sizeof (t_context_t ));
221
+ t_init (ctxs [i ]);
222
+ }
218
223
}
219
224
}
220
225
221
226
static bool test_const (char * text , int mode )
222
227
{
223
228
bool result = false;
224
229
230
+ init_once ();
231
+
225
232
for (int cnt = 0 ; cnt < TEST_TRIES ; ++ cnt ) {
226
233
printf ("Testing %s...(%d/%d)\n\n" , text , cnt , TEST_TRIES );
227
- init_once ();
228
234
for (int i = 0 ; i < ENOUGH_MEASURE / (N_MEASURES - DROP_SIZE * 2 ) + 1 ;
229
235
++ i )
230
236
result = doit (mode );
@@ -235,6 +241,7 @@ static bool test_const(char *text, int mode)
235
241
236
242
for (size_t i = 0 ; i < DUDECT_TESTS ; i ++ ) {
237
243
free (ctxs [i ]);
244
+ ctxs [i ] = NULL ;
238
245
}
239
246
240
247
return result ;
You can’t perform that action at this time.
0 commit comments