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

pktbuf: assert for potential null pointer

In practice, this should not happen, since `_first_unused` should be
already set, if `_too_small_hole()` returns true.
parent b68213a4
No related branches found
No related tags found
No related merge requests found
...@@ -429,6 +429,8 @@ static inline bool _too_small_hole(_unused_t *a, _unused_t *b) ...@@ -429,6 +429,8 @@ static inline bool _too_small_hole(_unused_t *a, _unused_t *b)
static inline _unused_t *_merge(_unused_t *a, _unused_t *b) static inline _unused_t *_merge(_unused_t *a, _unused_t *b)
{ {
assert(b != NULL);
a->next = b->next; a->next = b->next;
a->size = b->size + ((uint8_t *)b - (uint8_t *)a); a->size = b->size + ((uint8_t *)b - (uint8_t *)a);
return a; return a;
......
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