diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-08-26 11:01:04 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-09-26 21:10:01 -0400 |
commit | c6f3d81115989e274c42a852222b80d2e14ced6f (patch) | |
tree | 8a0e17df64381ab883acd76f5190b33fc80126ea /fs/proc | |
parent | ddd3e0771bc7b869c550687c204e21f0155d5496 (diff) |
don't leak O_CLOEXEC into ->f_flags
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/fd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/fd.c b/fs/proc/fd.c index 9cef449c0f76..f28a875f8779 100644 --- a/fs/proc/fd.c +++ b/fs/proc/fd.c | |||
@@ -36,7 +36,7 @@ static int seq_show(struct seq_file *m, void *v) | |||
36 | if (file) { | 36 | if (file) { |
37 | struct fdtable *fdt = files_fdtable(files); | 37 | struct fdtable *fdt = files_fdtable(files); |
38 | 38 | ||
39 | f_flags = file->f_flags & ~O_CLOEXEC; | 39 | f_flags = file->f_flags; |
40 | if (close_on_exec(fd, fdt)) | 40 | if (close_on_exec(fd, fdt)) |
41 | f_flags |= O_CLOEXEC; | 41 | f_flags |= O_CLOEXEC; |
42 | 42 | ||