nuttx/drivers/wireless/ieee802154
Gregory Nutt 3cad9f498f drivers/mkrd.c
drivers/net/telnet.c
 drivers/wireless/bluetooth/bt_uart_bcm4343x.c
 drivers/wireless/ieee802154/mrf24j40/mrf24j40.c

Kernel memory was allocated using kmm_malloc() or kmm_zalloc() but freed with with the user-space allocator free().  In the FLAT build, this is bad style, but not harmful because there is only a single, heap and malloc() and kmm_malloc() map to the same function.

But that is not true in the case of the PROTECTED or KERNEL builds.  In those cases, there are separate heaps.  kmm_malloc() will allocate from the kernel heap.  free() will attempt to free the kernel memory from the user heap and will cause an assertion (or other obscure failure if assertions are disabled).
2020-08-04 13:00:53 -05:00
..
at86rf23x build: Move INCDIROPT to common place 2020-05-18 15:02:55 -06:00
mrf24j40 drivers/mkrd.c 2020-08-04 13:00:53 -05:00
xbee build: Move INCDIROPT to common place 2020-05-18 15:02:55 -06:00
Kconfig Merged in merlin17/nuttx/xbee (pull request #484) 2017-09-15 14:37:55 +00:00
Make.defs build: Don't need use $(DELIM) in include statement 2020-05-24 08:24:13 -06:00