mirror of
https://github.com/apache/nuttx.git
synced 2025-12-08 19:02:43 +08:00
binfmt: Fix memory leak in ELF loader
Summary: - I noticed that the hello (ELF) application causes a memory leak. - Finally, I found that the data section is not deallocated. - This commit fixes this issue. Impact: - None Testing: - Tested with spresense:wifi_smp, rv-virt:nsh64, sabre-6quad:netnsh Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
committed by
Petro Karashchenko
parent
e937cfcbce
commit
23d57be21b
@@ -277,9 +277,10 @@ static int elf_loadbinary(FAR struct binary_s *binp,
|
||||
up_addrenv_clone(&loadinfo.addrenv, &binp->addrenv);
|
||||
#else
|
||||
binp->alloc[0] = (FAR void *)loadinfo.textalloc;
|
||||
binp->alloc[1] = (FAR void *)loadinfo.dataalloc;
|
||||
#ifdef CONFIG_BINFMT_CONSTRUCTORS
|
||||
binp->alloc[1] = loadinfo.ctoralloc;
|
||||
binp->alloc[2] = loadinfo.dtoralloc;
|
||||
binp->alloc[2] = loadinfo.ctoralloc;
|
||||
binp->alloc[3] = loadinfo.dtoralloc;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user