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

Commit 914e5cea authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller
Browse files

typhoon: memory corruption in typhoon_get_drvinfo()



info->version only has space for 32 characters but my UTS_RELEASE is
"2.6.37-rc6-next-20101217-05817-ge935fc8-dirty" so it doesn't fit.
This is supposed to be the version of the driver, not the kernel
version.  This driver doesn't have a version so lets just leave it
blank.

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bbccc16c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1004,7 +1004,6 @@ typhoon_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
	}

	strcpy(info->driver, KBUILD_MODNAME);
	strcpy(info->version, UTS_RELEASE);
	strcpy(info->bus_info, pci_name(pci_dev));
}