mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
dlm: Use kcalloc() in dlm_scan_waiters()
A multiplication for the size determination of a memory allocation indicated that an array data structure should be processed. Thus use the corresponding function "kcalloc". This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
2c257e96df
commit
fbb1008151
@ -1426,7 +1426,7 @@ void dlm_scan_waiters(struct dlm_ls *ls)
|
||||
|
||||
if (!num_nodes) {
|
||||
num_nodes = ls->ls_num_nodes;
|
||||
warned = kzalloc(num_nodes * sizeof(int), GFP_KERNEL);
|
||||
warned = kcalloc(num_nodes, sizeof(int), GFP_KERNEL);
|
||||
}
|
||||
if (!warned)
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user