summaryrefslogtreecommitdiff
path: root/libappstream-builder/plugins/asb-plugin-ibus-xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'libappstream-builder/plugins/asb-plugin-ibus-xml.c')
-rw-r--r--libappstream-builder/plugins/asb-plugin-ibus-xml.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libappstream-builder/plugins/asb-plugin-ibus-xml.c b/libappstream-builder/plugins/asb-plugin-ibus-xml.c
index 0638725..f5180fb 100644
--- a/libappstream-builder/plugins/asb-plugin-ibus-xml.c
+++ b/libappstream-builder/plugins/asb-plugin-ibus-xml.c
@@ -82,13 +82,13 @@ asb_plugin_process_filename (AsbPlugin *plugin,
gboolean found_header = FALSE;
gboolean ret;
guint i;
- _cleanup_free_ gchar *basename = NULL;
- _cleanup_free_ gchar *data = NULL;
- _cleanup_free_ gchar *filename_tmp = NULL;
- _cleanup_object_unref_ AsbApp *app = NULL;
- _cleanup_object_unref_ AsIcon *icon = NULL;
- _cleanup_strv_free_ gchar **languages = NULL;
- _cleanup_strv_free_ gchar **lines = NULL;
+ g_autofree gchar *basename = NULL;
+ g_autofree gchar *data = NULL;
+ g_autofree gchar *filename_tmp = NULL;
+ g_autoptr(AsbApp) app = NULL;
+ g_autoptr(AsIcon) icon = NULL;
+ g_auto(GStrv) languages = NULL;
+ g_auto(GStrv) lines = NULL;
/* open file */
filename_tmp = g_build_filename (tmpdir, filename, NULL);