diff options
Diffstat (limited to 'src/mtd_probe/mtd_probe.c')
-rw-r--r-- | src/mtd_probe/mtd_probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtd_probe/mtd_probe.c b/src/mtd_probe/mtd_probe.c index 70c04db40b..13c757bd1c 100644 --- a/src/mtd_probe/mtd_probe.c +++ b/src/mtd_probe/mtd_probe.c @@ -37,7 +37,7 @@ int main(int argc, char** argv) return 1; } - mtd_fd = open(argv[1], O_RDONLY); + mtd_fd = open(argv[1], O_RDONLY|O_CLOEXEC); if (mtd_fd == -1) { perror("open"); exit(-1); |