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

Commit a0c77227 authored by Sven Eckelmann's avatar Sven Eckelmann Committed by Antonio Quartulli
Browse files

batman-adv: Remove unnecessary check for orig_ifinfo not NULL



orig_ifinfo is dereferenced multiple times in batadv_iv_ogm_update_seqnos
before the check for NULL is done. The function also exists at the
beginning when orig_ifinfo would have been NULL. This makes the check at
the end unnecessary and only confuses the reader/code analyzers.

Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
Signed-off-by: default avatarMarek Lindner <mareklindner@neomailbox.ch>
parent 21102626
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -1357,7 +1357,6 @@ batadv_iv_ogm_update_seqnos(const struct ethhdr *ethhdr,
out:
out:
	spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
	spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
	batadv_orig_node_free_ref(orig_node);
	batadv_orig_node_free_ref(orig_node);
	if (orig_ifinfo)
	batadv_orig_ifinfo_free_ref(orig_ifinfo);
	batadv_orig_ifinfo_free_ref(orig_ifinfo);
	return ret;
	return ret;
}
}