From a5d551e2bed40db1385db562e2a89b5c16ac6970 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Thu, 23 Jun 2022 17:15:47 +0400 Subject: [PATCH] gobject/tests/performance: fix leaks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Easily spotted by ASAN. Signed-off-by: Marc-André Lureau --- gobject/tests/performance/performance-threaded.c | 1 + gobject/tests/performance/performance.c | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gobject/tests/performance/performance-threaded.c b/gobject/tests/performance/performance-threaded.c index 7e6ebc5eb..4107553f2 100644 --- a/gobject/tests/performance/performance-threaded.c +++ b/gobject/tests/performance/performance-threaded.c @@ -372,5 +372,6 @@ main (int argc, run_test (&tests[i]); } + g_option_context_free (context); return 0; } diff --git a/gobject/tests/performance/performance.c b/gobject/tests/performance/performance.c index 937509d8d..e2d0b1abd 100644 --- a/gobject/tests/performance/performance.c +++ b/gobject/tests/performance/performance.c @@ -479,7 +479,7 @@ test_construction_init (PerformanceTest *test, if (data->n_objects != n) { data->n_objects = n; - data->objects = g_new (GObject *, n); + data->objects = g_renew (GObject *, data->objects, n); } } @@ -603,7 +603,7 @@ test_finalization_init (PerformanceTest *test, if (data->n_objects != n) { data->n_objects = n; - data->objects = g_new (GObject *, n); + data->objects = g_renew (GObject *, data->objects, n); } for (int i = 0; i < data->n_objects; i++) @@ -1219,5 +1219,6 @@ main (int argc, run_test (&tests[k]); } + g_option_context_free (context); return 0; }