mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
orangefs: fix memory leak of string 'new' on exit path
commit 4defb5f912 upstream.
allocates string 'new' is not free'd on the exit path when
cdm_element_count <= 0. Fix this by kfree'ing it.
Fixes CoverityScan CID#1375923 "Resource Leak"
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
17fda94d18
commit
dcac0d18e7
@@ -671,8 +671,10 @@ int orangefs_prepare_debugfs_help_string(int at_boot)
|
||||
*/
|
||||
cdm_element_count =
|
||||
orangefs_prepare_cdm_array(client_debug_array_string);
|
||||
if (cdm_element_count <= 0)
|
||||
if (cdm_element_count <= 0) {
|
||||
kfree(new);
|
||||
goto out;
|
||||
}
|
||||
|
||||
for (i = 0; i < cdm_element_count; i++) {
|
||||
strlcat(new, "\t", string_size);
|
||||
|
||||
Reference in New Issue
Block a user