Commit d7736958 authored by Zheng Yongjun's avatar Zheng Yongjun Committed by David S. Miller
Browse files

net/x25: Return the correct errno code



When kalloc or kmemdup failed, should return ENOMEM rather than ENOBUF.

Signed-off-by: default avatarZheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a27fb314
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -536,7 +536,7 @@ static int x25_create(struct net *net, struct socket *sock, int protocol,
	if (protocol)
		goto out;

	rc = -ENOBUFS;
	rc = -ENOMEM;
	if ((sk = x25_alloc_socket(net, kern)) == NULL)
		goto out;