mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
ANDROID: xt_qtaguid: Remove unnecessary null checks to device's name
'name' will never be NULL since it isn't a plain pointer but an array
of char values.
../net/netfilter/xt_qtaguid.c:1195:27: warning: address of array
'(*el_dev)->name' will always evaluate to 'true'
[-Wpointer-bool-conversion]
if (unlikely(!(*el_dev)->name)) {
~~~~~~~~~~~~^~~~
Change-Id: If3b25f17829b43e8a639193fb9cd04ae45947200
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
This commit is contained in:
parent
3e312f97f8
commit
4519569354
|
|
@ -1192,11 +1192,6 @@ static void get_dev_and_dir(const struct sk_buff *skb,
|
|||
par->hooknum, __func__);
|
||||
BUG();
|
||||
}
|
||||
if (unlikely(!(*el_dev)->name)) {
|
||||
pr_err("qtaguid[%d]: %s(): no dev->name?!!\n",
|
||||
par->hooknum, __func__);
|
||||
BUG();
|
||||
}
|
||||
if (skb->dev && *el_dev != skb->dev) {
|
||||
MT_DEBUG("qtaguid[%d]: skb->dev=%p %s vs par->%s=%p %s\n",
|
||||
par->hooknum, skb->dev, skb->dev->name,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user