tun: signedness bug in tun_get_user()
authorDan Carpenter <[email protected]>
Thu, 15 Aug 2013 12:52:57 +0000 (15:52 +0300)
committerDavid S. Miller <[email protected]>
Thu, 15 Aug 2013 21:51:23 +0000 (14:51 -0700)
commit15718ea0d844e4816dbd95d57a8a0e3e264ba90e
tree1cd9c06a746d5e7173bfbe07ed84058c47ec4736
parentd1fcc172570fa4de69c60bdabe1e1ccfcfe80c26
tun: signedness bug in tun_get_user()

The recent fix d9bf5f1309 "tun: compare with 0 instead of total_len" is
not totally correct.  Because "len" and "sizeof()" are size_t type, that
means they are never less than zero.

Signed-off-by: Dan Carpenter <[email protected]>
Acked-by: Michael S. Tsirkin <[email protected]>
Acked-by: Neil Horman <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/tun.c