diff options
author | Szunti <Szunti@users.noreply.github.com> | 2020-12-27 00:44:14 +0100 |
---|---|---|
committer | Szunti <Szunti@users.noreply.github.com> | 2021-01-16 16:07:19 +0100 |
commit | 7555012e7dbba9f3d6ecede432126508fbf0582f (patch) | |
tree | 51af13fb9dead388dd4d959c973aaf5cc3e811e2 /tests/test-shape.c | |
parent | fb7eda6ed6ca6f8c6f8e4140374c5e980c00e5aa (diff) | |
download | pango-7555012e7dbba9f3d6ecede432126508fbf0582f.tar.gz |
Fix leaks found by asan
Diffstat (limited to 'tests/test-shape.c')
-rw-r--r-- | tests/test-shape.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test-shape.c b/tests/test-shape.c index 043f3d31..079bcd28 100644 --- a/tests/test-shape.c +++ b/tests/test-shape.c @@ -361,7 +361,10 @@ main (int argc, char *argv[]) g_free (path); if (g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) - return 0; + { + g_error_free(error); + return 0; + } g_assert_no_error (error); while ((name = g_dir_read_name (dir)) != NULL) |