diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-01-03 19:54:58 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:44 +0100 |
commit | f3bc54eb40ce17a81b71de550dff78d795a09241 (patch) | |
tree | 3c3d42673736061b6bc499d4b0d58e017e1c6e76 | |
parent | a68847a091074364f57be671fb405dd340cfa9d9 (diff) |
libmm-common: plug small leak in the common simple properties
-rw-r--r-- | libmm-common/mm-common-simple-properties.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmm-common/mm-common-simple-properties.c b/libmm-common/mm-common-simple-properties.c index 61bfa649..670c7ae0 100644 --- a/libmm-common/mm-common-simple-properties.c +++ b/libmm-common/mm-common-simple-properties.c @@ -342,6 +342,7 @@ finalize (GObject *object) { MMCommonSimpleProperties *self = MM_COMMON_SIMPLE_PROPERTIES (object); + g_variant_unref (self->priv->signal_quality); g_variant_unref (self->priv->bands); if (self->priv->bands_array) g_array_unref (self->priv->bands_array); |