Skip to content
Snippets Groups Projects
Commit 5fffc177 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

Merge pull request #3617 from OlegHahm/groundhog_day

ndp: missing initialization
parents 04b927b1 6663679a
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ kernel_pid_t ng_ndp_node_next_hop_l2addr(uint8_t *l2addr, uint8_t *l2addr_len, ...@@ -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); next_hop_ip = ng_ipv6_ext_rh_next_hop(hdr);
#endif #endif
#ifdef MODULE_FIB #ifdef MODULE_FIB
size_t next_hop_size; size_t next_hop_size = sizeof(ipv6_addr_t);
uint32_t next_hop_flags = 0; uint32_t next_hop_flags = 0;
ipv6_addr_t next_hop_actual; /* FIB copies address into this variable */ ipv6_addr_t next_hop_actual; /* FIB copies address into this variable */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment