summaryrefslogtreecommitdiff
path: root/src/caja-query-editor.c
diff options
context:
space:
mode:
authormbkma <[email protected]>2026-03-11 23:47:42 +0100
committerVictor Kareh <[email protected]>2026-03-12 12:24:41 -0400
commit6123e3886e9b65891a8b1bf7bb11425a4d98200c (patch)
treee947e7dee4b0782d5acd5849d8fd25d10fc415ce /src/caja-query-editor.c
parentf264171de8a195fcfa5315948fea584c4810a063 (diff)
downloadcaja-6123e3886e9b65891a8b1bf7bb11425a4d98200c.tar.bz2
caja-6123e3886e9b65891a8b1bf7bb11425a4d98200c.tar.xz
fix memleaks
Diffstat (limited to 'src/caja-query-editor.c')
-rw-r--r--src/caja-query-editor.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/caja-query-editor.c b/src/caja-query-editor.c
index b4f96179..fb49a95f 100644
--- a/src/caja-query-editor.c
+++ b/src/caja-query-editor.c
@@ -818,6 +818,8 @@ type_combo_changed (GtkComboBox *combo_box, CajaQueryEditorRow *row)
-1);
type_add_custom_type (row, mimetype, description, &iter);
+ g_free (description);
+ g_free (mimetype);
gtk_combo_box_set_active_iter (GTK_COMBO_BOX (row->type_widget),
&iter);
}