mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 16:27:39 -04:00
Fix a filehandle leak
During a check of the current git head of the linux kernel with the static code analysis tool cppcheck (http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=Main_Page) the tool discovered a resource leak in linux-2.6/scripts/dtc/fstree.c. Please refer the attached patch, that fixes the issue. Fixes https://bugzilla.kernel.org/show_bug.cgi?id=15363 Signed-off-by: Martin Ettl <ettl.martin@gmx.de> Signed-off-by: Michal Marek <mmarek@suse.cz> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
e3b32b75b5
commit
0e89e8c5a0
1 changed files with 1 additions and 0 deletions
1
fstree.c
1
fstree.c
|
@ -75,6 +75,7 @@ static struct node *read_fstree(const char *dirname)
|
|||
free(tmpnam);
|
||||
}
|
||||
|
||||
closedir(d);
|
||||
return tree;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue