diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2010-03-17 14:53:17 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-03-17 16:41:01 -0400 |
commit | f1bc4e8b9daf04a5cb4b9464021bb9e816eed3ea (patch) | |
tree | e567f20493ad395a5f5b251f1f69cac6410a7789 /src/providers | |
parent | 1d065874a1aa1db06994a16dae1a78555fabf776 (diff) | |
download | sssd-f1bc4e8b9daf04a5cb4b9464021bb9e816eed3ea.tar.gz sssd-f1bc4e8b9daf04a5cb4b9464021bb9e816eed3ea.tar.bz2 sssd-f1bc4e8b9daf04a5cb4b9464021bb9e816eed3ea.zip |
Fix a series of memory leaks in the SBUS
Diffstat (limited to 'src/providers')
-rw-r--r-- | src/providers/dp_auth_util.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/providers/dp_auth_util.c b/src/providers/dp_auth_util.c index e78884aa..fb10ced0 100644 --- a/src/providers/dp_auth_util.c +++ b/src/providers/dp_auth_util.c @@ -338,6 +338,7 @@ int dp_common_send_id(struct sbus_connection *conn, uint16_t version, { DBusMessage *msg; dbus_bool_t ret; + int retval; /* create the message */ msg = dbus_message_new_method_call(NULL, @@ -361,6 +362,9 @@ int dp_common_send_id(struct sbus_connection *conn, uint16_t version, return EIO; } - return sbus_conn_send(conn, msg, 30000, id_callback, NULL, NULL); + retval = sbus_conn_send(conn, msg, 30000, id_callback, NULL, NULL); + + dbus_message_unref(msg); + return retval; } |