diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2006-03-16 14:10:19 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2006-03-16 14:10:19 +0000 |
commit | 70af3d41686970fd767c16ea7d94a3acf56edce5 (patch) | |
tree | 09f1dc301dd788b108a33b912c56db6ac47ff84d /hcid | |
parent | 585bc7db19e7d4aac3f22607df3f7a1b20fbe506 (diff) |
Fix memory leak in rfcomm_bind()
Diffstat (limited to 'hcid')
-rw-r--r-- | hcid/dbus-rfcomm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hcid/dbus-rfcomm.c b/hcid/dbus-rfcomm.c index e51bdd5f..a4e029ef 100644 --- a/hcid/dbus-rfcomm.c +++ b/hcid/dbus-rfcomm.c @@ -131,6 +131,7 @@ static struct rfcomm_node *rfcomm_bind(bdaddr_t *src, const char *bda, uint8_t c if (err) *err = errno; error("RFCOMMCREATEDEV failed: %s (%d)", strerror(errno), errno); + free(node); return NULL; } @@ -140,7 +141,6 @@ static struct rfcomm_node *rfcomm_bind(bdaddr_t *src, const char *bda, uint8_t c return node; } - static DBusHandlerResult rfcomm_connect_req(DBusConnection *conn, DBusMessage *msg, void *data) { |