mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-18 12:08:18 +00:00
nshlib: fix memory leak found out by -fanalyzer
Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
parent
aea9b50dc8
commit
28973a37b3
1 changed files with 3 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ int cmd_dd(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv)
|
|||
ret = dd_infopen(infile, &dd);
|
||||
if (ret < 0)
|
||||
{
|
||||
goto errout_with_paths;
|
||||
goto errout_with_alloc;
|
||||
}
|
||||
|
||||
/* Open the output file */
|
||||
|
|
@ -475,6 +475,8 @@ errout_with_outf:
|
|||
|
||||
errout_with_inf:
|
||||
close(dd.infd);
|
||||
|
||||
errout_with_alloc:
|
||||
free(dd.buffer);
|
||||
|
||||
errout_with_paths:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue