diff options
author | Kirill Batuzov <batuzovk@ispras.ru> | 2014-04-10 18:07:57 +0400 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-04-28 08:55:32 +0400 |
commit | 00a9cacaea9afa4cb72871d1067bb21f75dcc3bd (patch) | |
tree | a65af6c12013220d05f8442190658608f12f4f9e /util/path.c | |
parent | b0f9300ca389952aeaa4b96aa58bf3661e227420 (diff) |
init_paths: fix minor memory leak
Fields "name" (created with strdup in new_entry) and "pathname"
(created with g_strdup_printf in new_entry) of pathelem struct should
be freed before the whole struct is.
Signed-off-by: Kirill Batuzov <batuzovk@ispras.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'util/path.c')
-rw-r--r-- | util/path.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/path.c b/util/path.c index 623219e4c5..5c59d9f1d3 100644 --- a/util/path.c +++ b/util/path.c @@ -160,7 +160,9 @@ void init_paths(const char *prefix) base = new_entry("", NULL, pref_buf); base = add_dir_maybe(base); if (base->num_entries == 0) { - free (base); + g_free(base->pathname); + free(base->name); + free(base); base = NULL; } else { set_parents(base, base); |