nlecomposition: don't leak internal hashtable

https://bugzilla.gnome.org/show_bug.cgi?id=754867
This commit is contained in:
Justin Kim 2015-09-11 16:18:46 +09:00 committed by Thibault Saunier
parent 937217021e
commit ff388f1d9b

View file

@ -1002,6 +1002,10 @@ nle_composition_dispose (GObject * object)
nle_composition_reset_target_pad (comp);
if (priv->pending_io) {
g_hash_table_unref (priv->pending_io);
}
G_OBJECT_CLASS (parent_class)->dispose (object);
}