mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
caif: Fix function NULL pointer check.
Check that receive function pointer is not null before calling it. Signed-off-by: Sjur Braendeland <sjur.brandeland@stericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b04367df66
commit
e5e03ce1e5
@ -173,7 +173,7 @@ static int receive(struct sk_buff *skb, struct net_device *dev,
|
||||
net = dev_net(dev);
|
||||
pkt = cfpkt_fromnative(CAIF_DIR_IN, skb);
|
||||
caifd = caif_get(dev);
|
||||
if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd)
|
||||
if (!caifd || !caifd->layer.up || !caifd->layer.up->receive)
|
||||
return NET_RX_DROP;
|
||||
|
||||
if (caifd->layer.up->receive(caifd->layer.up, pkt))
|
||||
|
Loading…
Reference in New Issue
Block a user