Hi, On Mon, Jul 19, 2021 at 08:26:23AM +0300, Dan Carpenter wrote: > On Sat, Jul 17, 2021 at 05:37:59PM +0200, Len Baker wrote: > > @@ -1808,7 +1808,7 @@ static int ks_wlan_get_firmware_version(struct net_device *dev, > > { > > struct ks_wlan_private *priv = netdev_priv(dev); > > > > - strcpy(extra, priv->firmware_version); > > + strscpy(extra, priv->firmware_version, sizeof(extra)); > > Extra is a pointer and not an array so this doesn't work. Apologies. I will send a v2 for review. Thanks for your time. Len