提交 77b6d09f 编写于 作者: V Valentin Vidic 提交者: David S. Miller

net: usb: sr9800: fix uninitialized local variable

Make sure res does not contain random value if the call to
sr_read_cmd fails for some reason.

Reported-by: syzbot+f1842130bbcfb335bac1@syzkaller.appspotmail.com
Signed-off-by: NValentin Vidic <vvidic@valentin-vidic.from.hr>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 efb86fed
...@@ -335,7 +335,7 @@ static void sr_set_multicast(struct net_device *net) ...@@ -335,7 +335,7 @@ static void sr_set_multicast(struct net_device *net)
static int sr_mdio_read(struct net_device *net, int phy_id, int loc) static int sr_mdio_read(struct net_device *net, int phy_id, int loc)
{ {
struct usbnet *dev = netdev_priv(net); struct usbnet *dev = netdev_priv(net);
__le16 res; __le16 res = 0;
mutex_lock(&dev->phy_mutex); mutex_lock(&dev->phy_mutex);
sr_set_sw_mii(dev); sr_set_sw_mii(dev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册