authd: fix memory leak in start_auth

This commit is contained in:
Simon Arlott 2016-05-01 10:59:22 +01:00
parent 9f928dc532
commit a4da4fe574
No known key found for this signature in database
GPG key ID: C8975F2043CA5D24

View file

@ -279,13 +279,14 @@ accept_client(struct auth_client *auth, uint32_t id)
static void
start_auth(const char *cid, const char *l_ip, const char *l_port, const char *c_ip, const char *c_port)
{
struct auth_client *auth = rb_malloc(sizeof(struct auth_client));
struct auth_client *auth;
long lcid = strtol(cid, NULL, 16);
rb_dlink_node *ptr;
if(lcid >= UINT32_MAX)
return;
auth = rb_malloc(sizeof(struct auth_client));
auth->cid = (uint32_t)lcid;
if(rb_dictionary_find(auth_clients, RB_UINT_TO_POINTER(auth->cid)) == NULL)