diff options
author | Stefan Fritsch <sf@apache.org> | 2011-11-20 00:35:46 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-11-20 00:35:46 +0100 |
commit | 40ac38ff050679c90fb07f1b262bcb51b72bb171 (patch) | |
tree | 98a7fc2eb2e7c03fe4b3e7653a03ef1a20955001 /modules/http/http_core.c | |
parent | mod_cache_disk: Remove the unnecessary intermediate brigade while writing (diff) | |
download | apache2-40ac38ff050679c90fb07f1b262bcb51b72bb171.tar.xz apache2-40ac38ff050679c90fb07f1b262bcb51b72bb171.zip |
Remove MPM-private stuff from conn_state_t
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1204104 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http/http_core.c')
-rw-r--r-- | modules/http/http_core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 8970ae6dc4..8421f42b97 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -126,6 +126,7 @@ static int ap_process_http_async_connection(conn_rec *c) request_rec *r; conn_state_t *cs = c->cs; + AP_DEBUG_ASSERT(cs != NULL); AP_DEBUG_ASSERT(cs->state == CONN_STATE_READ_REQUEST_LINE); while (cs->state == CONN_STATE_READ_REQUEST_LINE) { |