[gnc-gnome-utils] fix memory leak

from 9fb9868b
This commit is contained in:
Christopher Lam 2021-10-03 21:16:56 +08:00
parent 9a465fc359
commit 3f501bb31b

View File

@ -268,7 +268,7 @@ gnc_gnome_help_yelp_anchor_fix (GtkWindow *parent, const char *file_name, const
gchar *filename = g_build_filename (help_path, *langs, help_file, NULL);
if (g_file_test (filename, G_FILE_TEST_EXISTS))
{
full_path = g_strdup (filename);
full_path = filename;
break;
}
g_free (filename);