summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVivek Dasmohapatra <vivek@collabora.co.uk>2011-08-30 14:11:46 +0100
committerVivek Dasmohapatra <vivek@collabora.co.uk>2011-09-06 15:13:24 +0100
commit1e6d4cd9d48c5896f79dbea3bdf6ee64fcef1ad9 (patch)
treee39cdba3c66d9b2cad312275a1f76e13585d470c
parent49a2f9434acc3f7649ae0129248cc0f16466ba4f (diff)
downloadtelepathy-mission-control-1e6d4cd9d48c5896f79dbea3bdf6ee64fcef1ad9.tar.gz
Approval struct free function did not free a string member
-rw-r--r--src/mcd-dispatch-operation.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mcd-dispatch-operation.c b/src/mcd-dispatch-operation.c
index e020e83e..b49561b1 100644
--- a/src/mcd-dispatch-operation.c
+++ b/src/mcd-dispatch-operation.c
@@ -156,6 +156,7 @@ approval_free (Approval *approval)
/* we should have replied to the method call by now */
g_assert (approval->context == NULL);
+ g_free (approval->client_bus_name);
g_slice_free (Approval, approval);
}