Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 110361f4 authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller
Browse files

udp: fix if statement in SIOCINQ ioctl



We deleted a line of code and accidentally made the "return put_user()"
part of the if statement when it's supposed to be unconditional.

Fixes: 9f9a45be ('udp: do not expect udp headers on ioctl SIOCINQ')
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Acked-by: default avatarEric Dumazet <edumazet@google.com>
Acked-by: default avatarWillem de Bruijn <willemb@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 550bce59
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -1276,12 +1276,6 @@ int udp_ioctl(struct sock *sk, int cmd, unsigned long arg)
	{
		unsigned int amount = first_packet_length(sk);

		if (amount)
			/*
			 * We will only return the amount
			 * of this packet since that is all
			 * that will be read.
			 */
		return put_user(amount, (int __user *)arg);
	}