summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/libelf/libelf_unload.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/binfmt/libelf/libelf_unload.c')
-rw-r--r--nuttx/binfmt/libelf/libelf_unload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/binfmt/libelf/libelf_unload.c b/nuttx/binfmt/libelf/libelf_unload.c
index 539e5faf7..7f7a3cf91 100644
--- a/nuttx/binfmt/libelf/libelf_unload.c
+++ b/nuttx/binfmt/libelf/libelf_unload.c
@@ -92,7 +92,7 @@ int elf_unload(struct elf_loadinfo_s *loadinfo)
#ifdef CONFIG_BINFMT_CONSTRUCTORS
if (loadinfo->ctoralloc != 0)
{
- kfree(loadinfo->ctoralloc);
+ kufree(loadinfo->ctoralloc);
loadinfo->ctoralloc = NULL;
}
@@ -101,7 +101,7 @@ int elf_unload(struct elf_loadinfo_s *loadinfo)
if (loadinfo->dtoralloc != 0)
{
- kfree(loadinfo->dtoralloc);
+ kufree(loadinfo->dtoralloc);
loadinfo->dtoralloc = NULL;
}