Commit f54abbce authored by Jeff Trawick's avatar Jeff Trawick
Browse files

use memset() instead of bzero(); APR no longer tries to guarantee

the existence of bzero()


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87928 13f79535-47bb-0310-9956-ffa450edef68
parent 9eefd1e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -567,7 +567,7 @@ int reap_children(apr_wait_t *status)
		kill((pid = ap_scoreboard_image->parent[n].pid), 0) == -1) {
	    ap_update_child_status(n, SERVER_DEAD, NULL);
	    /* just mark it as having a successful exit status */
	    bzero((char *) status, sizeof(apr_wait_t));
	    memset(status, 0, sizeof(apr_wait_t));
	    return(pid);
	}
    }