diff options
author | Ryan Bloom <rbb@apache.org> | 2000-05-24 02:42:01 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-05-24 02:42:01 +0200 |
commit | 93d9ac51ce04eeaa9e83caa7a50fff9067f27737 (patch) | |
tree | fe6c90023f0c6cf10930e786afb3f7c4396404f8 /include/mpm_common.h | |
parent | Rename stdin, stdout, stderr from new ap_proc_t to in, out, and err because (diff) | |
download | apache2-93d9ac51ce04eeaa9e83caa7a50fff9067f27737.tar.xz apache2-93d9ac51ce04eeaa9e83caa7a50fff9067f27737.zip |
Fix a memory leak with ap_wait_or_timeout.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85286 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/mpm_common.h')
-rw-r--r-- | include/mpm_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mpm_common.h b/include/mpm_common.h index f693f6011c..0e83e8a597 100644 --- a/include/mpm_common.h +++ b/include/mpm_common.h @@ -75,7 +75,7 @@ extern "C" { #endif void ap_reclaim_child_processes(int terminate); -ap_proc_t *ap_wait_or_timeout(ap_wait_t *status, ap_pool_t *p); +void ap_wait_or_timeout(ap_wait_t *status, ap_proc_t *ret, ap_pool_t *p); #ifdef __cplusplus } |