Skip to content

Commit

Permalink
Merge pull request RIOT-OS#3617 from OlegHahm/groundhog_day
Browse files Browse the repository at this point in the history
ndp: missing initialization
  • Loading branch information
OlegHahm committed Aug 12, 2015
2 parents 04b927b + 6663679 commit 5fffc17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/net/network_layer/ng_ndp/node/ng_ndp_node.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ kernel_pid_t ng_ndp_node_next_hop_l2addr(uint8_t *l2addr, uint8_t *l2addr_len,
next_hop_ip = ng_ipv6_ext_rh_next_hop(hdr);
#endif
#ifdef MODULE_FIB
size_t next_hop_size;
size_t next_hop_size = sizeof(ipv6_addr_t);
uint32_t next_hop_flags = 0;
ipv6_addr_t next_hop_actual; /* FIB copies address into this variable */

Expand Down

0 comments on commit 5fffc17

Please sign in to comment.