aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/batman-adv/unicast.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/net/batman-adv/unicast.c b/net/batman-adv/unicast.c
index 688a0419756b..857e1b8349ee 100644
--- a/net/batman-adv/unicast.c
+++ b/net/batman-adv/unicast.c
@@ -432,12 +432,16 @@ find_router:
432 432
433 switch (packet_type) { 433 switch (packet_type) {
434 case BATADV_UNICAST: 434 case BATADV_UNICAST:
435 batadv_unicast_prepare_skb(skb, orig_node); 435 if (!batadv_unicast_prepare_skb(skb, orig_node))
436 goto out;
437
436 header_len = sizeof(struct batadv_unicast_packet); 438 header_len = sizeof(struct batadv_unicast_packet);
437 break; 439 break;
438 case BATADV_UNICAST_4ADDR: 440 case BATADV_UNICAST_4ADDR:
439 batadv_unicast_4addr_prepare_skb(bat_priv, skb, orig_node, 441 if (!batadv_unicast_4addr_prepare_skb(bat_priv, skb, orig_node,
440 packet_subtype); 442 packet_subtype))
443 goto out;
444
441 header_len = sizeof(struct batadv_unicast_4addr_packet); 445 header_len = sizeof(struct batadv_unicast_4addr_packet);
442 break; 446 break;
443 default: 447 default: