summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2011-07-21 18:01:01 +0100
committerWill Thompson <will@willthompson.co.uk>2012-01-13 11:30:41 +0000
commitea29b557db2994ea4407a95047453afd9cefbe1a (patch)
tree701e6811454a6c211a62825c34bf7759aa624248
parentc95d0ce8abd38f7c756642fc749e22da454fd178 (diff)
Free filters as well
-rw-r--r--c-sources/bustle-dbus-monitor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/c-sources/bustle-dbus-monitor.c b/c-sources/bustle-dbus-monitor.c
index 22ffe7d..726b5e4 100644
--- a/c-sources/bustle-dbus-monitor.c
+++ b/c-sources/bustle-dbus-monitor.c
@@ -466,8 +466,9 @@ main (int argc, char *argv[])
dbus_error_free (&error);
exit (1);
}
- free(filters[i]);
+ free(filters[i]);
}
+ free (filters);
}
else
{