Commit 48dc185b authored by Dan Carpenter's avatar Dan Carpenter Committed by Ben Hutchings

ipx: call ipxitf_put() in ioctl error path

commit ee0d8d84 upstream.

We should call ipxitf_put() if the copy_to_user() fails.
Reported-by: default avatar李强 <liqiang6-s@360.cn>
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent e39e6419
......@@ -1194,11 +1194,10 @@ static int ipxitf_ioctl(unsigned int cmd, void __user *arg)
sipx->sipx_network = ipxif->if_netnum;
memcpy(sipx->sipx_node, ipxif->if_node,
sizeof(sipx->sipx_node));
rc = -EFAULT;
rc = 0;
if (copy_to_user(arg, &ifr, sizeof(ifr)))
break;
rc = -EFAULT;
ipxitf_put(ipxif);
rc = 0;
break;
}
case SIOCAIPXITFCRT:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment