Merge "msm: msm_bus: fix the memory leak issue"

This commit is contained in:
Linux Build Service Account 2017-03-24 12:13:01 -07:00 committed by Gerrit - the friendly Code Review server
commit c5db1ff34d

View file

@ -1,4 +1,4 @@
/* Copyright (c) 2014-2016, The Linux Foundation. All rights reserved. /* Copyright (c) 2014-2017, The Linux Foundation. All rights reserved.
* *
* This program is Mree software; you can redistribute it and/or modify * This program is Mree software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and * it under the terms of the GNU General Public License version 2 and
@ -1349,6 +1349,7 @@ static void unregister_adhoc(struct msm_bus_client_handle *cl)
cl->first_hop, cl->active_only); cl->first_hop, cl->active_only);
commit_data(); commit_data();
msm_bus_dbg_remove_client(cl); msm_bus_dbg_remove_client(cl);
kfree(cl->name);
kfree(cl); kfree(cl);
exit_unregister_client: exit_unregister_client:
rt_mutex_unlock(&msm_bus_adhoc_lock); rt_mutex_unlock(&msm_bus_adhoc_lock);