From ec7436a01deb8e28743de47ad98950c914d6da2a Mon Sep 17 00:00:00 2001 From: Christian C Date: Tue, 1 Apr 2025 20:46:17 -0700 Subject: Global Allocator Checking --- test/lib/dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/lib/dir.c') diff --git a/test/lib/dir.c b/test/lib/dir.c index 85ef400..121540e 100644 --- a/test/lib/dir.c +++ b/test/lib/dir.c @@ -28,7 +28,7 @@ void _TEST_is_directory(bool_t *result, TestCount_t *test_count, bool_t test_full_path(char *dirname, char *file, char *result) { char *fpath = full_path(dirname, file); bool_t cmp_result = strcmp(result, fpath); - free(fpath); + g_free(fpath); if (cmp_result == 0) { return TRUE; } -- cgit v1.2.1