libc: fix assert "Free memory from the wrong heap" with flat mode and… #16768
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
libc: fix assert "Free memory from the wrong heap" with flat mode and user separated heap enabled mode
In flat mode:
kernel code, like net driver...
strdup -> nx_strdup -> kmm_malloc
lib_free -> kmm_free
app code, like stdlib...
strdup -> malloc
free -> free
Impact
user separated heap enabled mode
Testing
To fix the issue described by:
#16766
Let me introduce the history:
nuttx/lib: remove dependency on BUILD_FLAT for library memory allocation interface #6445
-#if !defined(CONFIG_BUILD_FLAT) && defined(KERNEL)
+#if defined(KERNEL)
Fix assertion of free a wrong heap #9600
-#if defined(KERNEL)
+#if !defined(CONFIG_BUILD_FLAT) && defined(KERNEL)
issue include: Fix bug related to string.h's str[|n]dup #16766
libc: fix assert "Free memory from the wrong heap" with flat mode and… #16768 (current patch)
-#if !defined(CONFIG_BUILD_FLAT) && defined(KERNEL)
+#if defined(KERNEL)