Mailing List Archive

svn commit: r1902641 - /httpd/httpd/trunk/server/mpm/winnt/child.c
Author: ylavic
Date: Mon Jul 11 00:26:12 2022
New Revision: 1902641

URL: http://svn.apache.org/viewvc?rev=1902641&view=rev
Log:
mpm_winnt: Follow up to r1902636: another compilation error.

Same error, elsewhere.


Modified:
httpd/httpd/trunk/server/mpm/winnt/child.c

Modified: httpd/httpd/trunk/server/mpm/winnt/child.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/winnt/child.c?rev=1902641&r1=1902640&r2=1902641&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/winnt/child.c (original)
+++ httpd/httpd/trunk/server/mpm/winnt/child.c Mon Jul 11 00:26:12 2022
@@ -1242,7 +1242,7 @@ void child_main(apr_pool_t *pconf, DWORD
"Child: Waiting for %d threads timed out, terminating process.",
threads_created);
for (i = 0; i < threads_created; i++) {
- struct worker_info *info = workers[i];
+ struct worker_info *info = &workers[i];
ap_update_child_status_from_indexes(0, info->num, SERVER_DEAD, NULL);
}
/* We can't wait for any longer, but still have some threads remaining.