diff options
Diffstat (limited to 'package/uhttpd/src/uhttpd-lua.c')
-rw-r--r-- | package/uhttpd/src/uhttpd-lua.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/package/uhttpd/src/uhttpd-lua.c b/package/uhttpd/src/uhttpd-lua.c index e8d932b47b..0b91b348f4 100644 --- a/package/uhttpd/src/uhttpd-lua.c +++ b/package/uhttpd/src/uhttpd-lua.c @@ -316,13 +316,7 @@ static bool uh_lua_socket_cb(struct client *cl) state->data_sent = true; } - /* child has been marked dead by timeout or child handler, bail out */ - if (false && cl->dead) - { - D("Lua: Child(%d) is marked dead, returning\n", state->cl->proc.pid); - goto out; - } - + /* got EOF or read error from child */ if ((len == 0) || ((errno != EAGAIN) && (errno != EWOULDBLOCK) && (len == -1))) { |