mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-26 04:20:23 +09:00
rpmsg: glink: Add check for kstrdup
[ Upstream commitb5c9ee8296] Add check for the return value of kstrdup() and return the error if it fails in order to avoid NULL pointer dereference. Fixes:b4f8e52b89("rpmsg: Introduce Qualcomm RPM glink driver") Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn> Link: https://lore.kernel.org/r/20230619030631.12361-1-jiasheng@iscas.ac.cn Signed-off-by: Bjorn Andersson <andersson@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b45cf29f97
commit
abd740db89
@@ -222,6 +222,10 @@ static struct glink_channel *qcom_glink_alloc_channel(struct qcom_glink *glink,
|
||||
|
||||
channel->glink = glink;
|
||||
channel->name = kstrdup(name, GFP_KERNEL);
|
||||
if (!channel->name) {
|
||||
kfree(channel);
|
||||
return ERR_PTR(-ENOMEM);
|
||||
}
|
||||
|
||||
init_completion(&channel->open_req);
|
||||
init_completion(&channel->open_ack);
|
||||
|
||||
Reference in New Issue
Block a user