mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
net/x25: Return the correct errno code
[ Upstream commit d773695866 ]
When kalloc or kmemdup failed, should return ENOMEM rather than ENOBUF.
Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
0aa3569508
commit
04c1556bfc
@@ -546,7 +546,7 @@ static int x25_create(struct net *net, struct socket *sock, int protocol,
|
|||||||
if (protocol)
|
if (protocol)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
rc = -ENOBUFS;
|
rc = -ENOMEM;
|
||||||
if ((sk = x25_alloc_socket(net, kern)) == NULL)
|
if ((sk = x25_alloc_socket(net, kern)) == NULL)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user