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

6lowpan: prefixes are initially all null pointers

Since the prefixes list stores pointers, one need to check for null pointers first.
parent ba023aec
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,9 @@ static gnrc_sixlowpan_nd_router_prf_t *_get_free_prefix(ipv6_addr_t *prefix, siz ...@@ -52,7 +52,9 @@ static gnrc_sixlowpan_nd_router_prf_t *_get_free_prefix(ipv6_addr_t *prefix, siz
return &_prefixes[i]; return &_prefixes[i];
} }
if ((prf == NULL) && ipv6_addr_is_unspecified(&_prefixes[i].prefix->addr)) { if ((prf == NULL) &&
((_prefixes[i].prefix == NULL) ||
ipv6_addr_is_unspecified(&_prefixes[i].prefix->addr))) {
prf = &_prefixes[i]; prf = &_prefixes[i];
} }
} }
......
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