mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
run-command: dup_devnull(): guard against syscalls failing
dup_devnull() did not check the return values of open() and dup2(). Fix this omission. Signed-off-by: Thomas Rast <trast@inf.ethz.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
a2cb86c152
commit
a77f106c78
@ -76,7 +76,10 @@ static inline void close_pair(int fd[2])
|
|||||||
static inline void dup_devnull(int to)
|
static inline void dup_devnull(int to)
|
||||||
{
|
{
|
||||||
int fd = open("/dev/null", O_RDWR);
|
int fd = open("/dev/null", O_RDWR);
|
||||||
dup2(fd, to);
|
if (fd < 0)
|
||||||
|
die_errno(_("open /dev/null failed"));
|
||||||
|
if (dup2(fd, to) < 0)
|
||||||
|
die_errno(_("dup2(%d,%d) failed"), fd, to);
|
||||||
close(fd);
|
close(fd);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user