util.pposix: Do not attempt to assign to stdio variables [pedantic]

Fixes build on gcc 6.4.0

See also https://stackoverflow.com/a/586416
This commit is contained in:
Kim Alvefur 2018-09-07 15:25:33 +02:00
parent faffced19d
commit 53c20a796e

View file

@ -111,9 +111,9 @@ static int lc_daemonize(lua_State *L) {
}
/* Make sure accidental use of FDs 0, 1, 2 don't cause weirdness */
stdin = freopen("/dev/null", "r", stdin);
stdout = freopen("/dev/null", "w", stdout);
stderr = freopen("/dev/null", "w", stderr);
freopen("/dev/null", "r", stdin);
freopen("/dev/null", "w", stdout);
freopen("/dev/null", "w", stderr);
/* Final fork, use it wisely */
if(fork()) {