PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- *) mod_ssl: Silence compiler warning
- "686: warning: 'ok' may be used uninitialized in
- this function"
- This is a false positive, because the value of "ok"
- will only be used if stapling_get_cached_response()
- sets "rsp" to non-NULL in which case it will always
- have set "ok".
- trunk patch: http://svn.apache.org/r1775173
- 2.4.x patch: trunk works
- +1: rjung, jim, ylavic
-
*) core: remove isascci check before narrower checks in vhost checking
trunk patch: http://svn.apache.org/r1775199
http://svn.apache.org/r1775664
OCSP_RESPONSE **rsp, BOOL *pok,
certinfo *cinf, apr_pool_t *p)
{
- BOOL ok;
+ BOOL ok = FALSE;
int rv;
AP_DEBUG_ASSERT(*rsp == NULL);