Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e1743bc authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "haven: hh_rm_core: fix ID leaking"

parents 2387accd d0a7eee6
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -644,14 +644,14 @@ void *hh_rm_call(hh_rm_msgid_t message_id,
			     connection->recv_buff, connection->recv_buff_size,
			     false);

	mutex_lock(&hh_rm_call_idr_lock);
	idr_remove(&hh_rm_call_idr, connection->seq);
	mutex_unlock(&hh_rm_call_idr_lock);

	ret = connection->recv_buff;
	*resp_buff_size = connection->recv_buff_size;

out:
	mutex_lock(&hh_rm_call_idr_lock);
	idr_remove(&hh_rm_call_idr, connection->seq);
	mutex_unlock(&hh_rm_call_idr_lock);

	kfree(connection);
	return ret;
}