mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-14 14:20:21 +00:00
application-dbus: free strings during finalization
This commit is contained in:
parent
63b90bb5b8
commit
90b78f89d3
@ -419,7 +419,11 @@ gtk_application_impl_dbus_init (GtkApplicationImplDBus *dbus)
|
||||
static void
|
||||
gtk_application_impl_dbus_finalize (GObject *object)
|
||||
{
|
||||
//GtkApplicationImplDBus *dbus = (GtkApplicationImplDBus *) object;
|
||||
GtkApplicationImplDBus *dbus = (GtkApplicationImplDBus *) object;
|
||||
|
||||
g_free (dbus->app_menu_path);
|
||||
g_free (dbus->menubar_path);
|
||||
g_free (dbus->app_id);
|
||||
|
||||
G_OBJECT_CLASS (gtk_application_impl_dbus_parent_class)->finalize (object);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user