mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Fix deallocation in queuebuf.c, case where QUEUEBUF_STATS is set
This commit is contained in:
parent
928bb49855
commit
c5ec342b8b
@ -390,9 +390,9 @@ queuebuf_new_from_packetbuf(void)
|
||||
PRINTF("queuebuf len %d\n", queuebuf_len);
|
||||
printf("#A q=%d\n", queuebuf_len);
|
||||
if(queuebuf_len == queuebuf_max_len + 1) {
|
||||
memb_free(&bufmem, buf);
|
||||
queuebuf_len--;
|
||||
return NULL;
|
||||
queuebuf_free(buf);
|
||||
queuebuf_len--;
|
||||
return NULL;
|
||||
}
|
||||
#endif /* QUEUEBUF_STATS */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user