From f5c4c049bf8b6b246445a7e27361a16195c0b4ab Mon Sep 17 00:00:00 2001
From: Christian C <cc@localhost>
Date: Wed, 2 Apr 2025 18:19:43 -0700
Subject: Remove temporary allocator

---
 test/lib/dir.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'test/lib')

diff --git a/test/lib/dir.c b/test/lib/dir.c
index 121540e..85ef400 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);
-  g_free(fpath);
+  free(fpath);
   if (cmp_result == 0) {
     return TRUE;
   }
-- 
cgit v1.2.1