diff options
author | Christian C <cc@localhost> | 2025-04-01 20:46:17 -0700 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-04-01 20:46:17 -0700 |
commit | ec7436a01deb8e28743de47ad98950c914d6da2a (patch) | |
tree | 765212b89d5c9740408d3d8bda8e1daacf55890e /test | |
parent | a18cea2fef7aa1545c9a984b60919541b26a6f84 (diff) |
Global Allocator Checking
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |