mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
staging: ks7010: don't print skb->dev->name if skb is null
A null pointer dereference will occur when skb is null and skb->dev->name is printed. Replace the skb->dev->name with plain text "ks_wlan" to fix this. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9afe11e956
commit
95d2a32466
@ -485,8 +485,7 @@ void hostif_data_indication(struct ks_wlan_private *priv)
|
||||
netif_rx(skb);
|
||||
} else {
|
||||
printk(KERN_WARNING
|
||||
"%s: Memory squeeze, dropping packet.\n",
|
||||
skb->dev->name);
|
||||
"ks_wlan: Memory squeeze, dropping packet.\n");
|
||||
priv->nstats.rx_dropped++;
|
||||
}
|
||||
break;
|
||||
@ -521,8 +520,7 @@ void hostif_data_indication(struct ks_wlan_private *priv)
|
||||
netif_rx(skb);
|
||||
} else {
|
||||
printk(KERN_WARNING
|
||||
"%s: Memory squeeze, dropping packet.\n",
|
||||
skb->dev->name);
|
||||
"ks_wlan: Memory squeeze, dropping packet.\n");
|
||||
priv->nstats.rx_dropped++;
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user