VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Andrew Morton <akpm@osdl.org> 2006-09-27 01:51:02 -0700 committer: Linus Torvalds <torvalds@g5.osdl.org> 2006-09-27 08:26:19 -0700 commit: 8b0e330b7720a206339887044fa275bf537a5264 parent: 07563c711fbc25389e58ab9c9f0b9de2fce56760
Commit Summary:
[PATCH] alloc_fdtable() cleanup
Diffstat:
1 file changed, 2 insertions, 4 deletions
diff --git a/fs/file.c b/fs/file.c
index b3c6b82e6a9d..8d3bfca7714b 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -281,10 +281,8 @@ static struct fdtable *alloc_fdtable(int nr)
 out2:
 	nfds = fdt->max_fdset;
 out:
-  	if (new_openset)
-  		free_fdset(new_openset, nfds);
-  	if (new_execset)
-  		free_fdset(new_execset, nfds);
+	free_fdset(new_openset, nfds);
+	free_fdset(new_execset, nfds);
 	kfree(fdt);
 	return NULL;
 }