fix: ignore unused freopen result (#15884)
This commit is contained in:
parent
753fb31c54
commit
165d168ee5
1 changed files with 3 additions and 3 deletions
|
@ -69,11 +69,11 @@ void FixStdioStreams() {
|
||||||
// For details see https://github.com/libuv/libuv/issues/2062
|
// For details see https://github.com/libuv/libuv/issues/2062
|
||||||
struct stat st;
|
struct stat st;
|
||||||
if (fstat(STDIN_FILENO, &st) < 0 && errno == EBADF)
|
if (fstat(STDIN_FILENO, &st) < 0 && errno == EBADF)
|
||||||
freopen("/dev/null", "r", stdin);
|
ignore_result(freopen("/dev/null", "r", stdin));
|
||||||
if (fstat(STDOUT_FILENO, &st) < 0 && errno == EBADF)
|
if (fstat(STDOUT_FILENO, &st) < 0 && errno == EBADF)
|
||||||
freopen("/dev/null", "w", stdout);
|
ignore_result(freopen("/dev/null", "w", stdout));
|
||||||
if (fstat(STDERR_FILENO, &st) < 0 && errno == EBADF)
|
if (fstat(STDERR_FILENO, &st) < 0 && errno == EBADF)
|
||||||
freopen("/dev/null", "w", stderr);
|
ignore_result(freopen("/dev/null", "w", stderr));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue