]> git.baikalelectronics.ru Git - kernel.git/commit
HSI: core: fix resource leaks in hsi_add_client_from_dt()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 9 Apr 2021 11:08:17 +0000 (14:08 +0300)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Thu, 15 Apr 2021 22:14:49 +0000 (00:14 +0200)
commitc2e32b31724223d6baa804b0466678c7f252b536
tree65cb05c22dfbbc81e114af1583530db66db9057c
parent219c9076286fd92026e818ab1375558e5b20649f
HSI: core: fix resource leaks in hsi_add_client_from_dt()

If some of the allocations fail between the dev_set_name() and the
device_register() then the name will not be freed.  Fix this by
moving dev_set_name() directly in front of the call to device_register().

Fixes: e8925975388c ("HSI: Add common DT binding for HSI client devices")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/hsi/hsi_core.c