diff options
author | Garrett Regier <garrettregier@gmail.com> | 2011-12-08 08:09:56 -0800 |
---|---|---|
committer | Garrett Regier <garrettregier@gmail.com> | 2011-12-08 08:09:56 -0800 |
commit | 974037f20e1d299a4add2e425ee8f7a1bf466b59 (patch) | |
tree | 768689921632e6842a906df31d80c4a138a61587 /libpeas/peas-object-module.c | |
parent | 7c3a39a988f78c9b317760a271f4962b6d36de2a (diff) | |
download | libpeas-974037f20e1d299a4add2e425ee8f7a1bf466b59.tar.gz |
Bump glib version to 2.28
Diffstat (limited to 'libpeas/peas-object-module.c')
-rw-r--r-- | libpeas/peas-object-module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpeas/peas-object-module.c b/libpeas/peas-object-module.c index a294b9d..c24f75b 100644 --- a/libpeas/peas-object-module.c +++ b/libpeas/peas-object-module.c @@ -168,7 +168,7 @@ peas_object_module_finalize (GObject *object) if (impls[i].destroy_func != NULL) impls[i].destroy_func (impls[i].user_data); - g_array_free (module->priv->implementations, TRUE); + g_array_unref (module->priv->implementations); G_OBJECT_CLASS (peas_object_module_parent_class)->finalize (object); } |