-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) mod_http2: fix for crash when running out of memory.
+ [Robert Swiecki <robert@swiecki.net>, Stefan Eissing]
+
*) mod_ssl: work around leaks on (graceful) restart. [Yann Ylavic]
*) When using mod_status with the Event MPM, report the number of requests
return APR_ECONNRESET;
}
status = h2_request_rcreate(&req, stream->pool, r);
- ap_log_rerror(APLOG_MARK, APLOG_DEBUG, status, r, APLOGNO(03058)
- "h2_request(%d): set_request_rec %s host=%s://%s%s",
- stream->id, req->method, req->scheme, req->authority,
- req->path);
- stream->rtmp = req;
+ if (status == APR_SUCCESS) {
+ ap_log_rerror(APLOG_MARK, APLOG_DEBUG, status, r, APLOGNO(03058)
+ "h2_request(%d): set_request_rec %s host=%s://%s%s",
+ stream->id, req->method, req->scheme, req->authority,
+ req->path);
+ stream->rtmp = req;
+ }
return status;
}