[package] uhttpd: remove some dead code
[openwrt/svn-archive/archive.git] / package / uhttpd / src / uhttpd-cgi.c
index 5e445ca372521023ad9eba92952c56a4817ba13f..ee1b80cc7fe0c7a3fef38bade078d9c123447677 100644 (file)
@@ -283,13 +283,7 @@ static bool uh_cgi_socket_cb(struct client *cl)
                }
        }
 
-       /* child has been marked dead by timeout or child handler, bail out */
-       if (false && cl->dead)
-       {
-               D("CGI: 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)))
        {