mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
iio: multiplexer: add NULL check on devm_kzalloc() and devm_kmemdup() return values
[ Upstream commitdd92d5ea20
] Check return values from call to devm_kzalloc() and devm_kmemup() in order to prevent a NULL pointer dereference. This issue was detected using Coccinelle and the following semantic patch: @@ expression x; identifier fld; @@ * x = devm_kzalloc(...); ... when != x == NULL x->fld Fixes:7ba9df54b0
("iio: multiplexer: new iio category and iio-mux driver") Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Acked-by: Peter Rosin <peda@axentia.se> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
68744edd6e
commit
53ce4d4aad
@ -285,6 +285,9 @@ static int mux_configure_channel(struct device *dev, struct mux *mux,
|
||||
child->ext_info_cache = devm_kzalloc(dev,
|
||||
sizeof(*child->ext_info_cache) *
|
||||
num_ext_info, GFP_KERNEL);
|
||||
if (!child->ext_info_cache)
|
||||
return -ENOMEM;
|
||||
|
||||
for (i = 0; i < num_ext_info; ++i) {
|
||||
child->ext_info_cache[i].size = -1;
|
||||
|
||||
@ -309,6 +312,9 @@ static int mux_configure_channel(struct device *dev, struct mux *mux,
|
||||
|
||||
child->ext_info_cache[i].data = devm_kmemdup(dev, page, ret + 1,
|
||||
GFP_KERNEL);
|
||||
if (!child->ext_info_cache[i].data)
|
||||
return -ENOMEM;
|
||||
|
||||
child->ext_info_cache[i].data[ret] = 0;
|
||||
child->ext_info_cache[i].size = ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user