Commit 224c0497 authored by Denis Kirjanov's avatar Denis Kirjanov Committed by David S. Miller
Browse files

net: usb: pegasus: fix improper read if get_registers() fail



get_registers() may fail with -ENOMEM and in this
case we can read a garbage from the status variable tmp.

Reported-by: default avatar <syzbot+3499a83b2d062ae409d4@syzkaller.appspotmail.com>
Signed-off-by: default avatarDenis Kirjanov <kda@linux-powerpc.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4da5f001
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -282,7 +282,7 @@ static void mdio_write(struct net_device *dev, int phy_id, int loc, int val)
static int read_eprom_word(pegasus_t *pegasus, __u8 index, __u16 *retdata)
{
	int i;
	__u8 tmp;
	__u8 tmp = 0;
	__le16 retdatai;
	int ret;