Skip to content

Commit 84a9b97

Browse files
committed
svn merge -c 1910518,1910847,1912477,1918297 ^/httpd/httpd/trunk .
*) Easy patches: synch 2.4.x and trunk - ab: Increase MAX_CONCURRENCY hard limit (from 20K to 200K) - ab: Fix X509 * leak - dav/fs/dbm.c: Remove error message references to "property" databases - httpd.h: Fix comment git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1923142 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4c8fb01 commit 84a9b97

File tree

4 files changed

+5
-17
lines changed

4 files changed

+5
-17
lines changed

STATUS

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -157,19 +157,6 @@ RELEASE SHOWSTOPPERS:
157157
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
158158
[ start all new proposals below, under PATCHES PROPOSED. ]
159159

160-
*) Easy patches: synch 2.4.x and trunk
161-
- ab: Increase MAX_CONCURRENCY hard limit (from 20K to 200K)
162-
- ab: Fix X509 * leak
163-
- dav/fs/dbm.c: Remove error message references to "property" databases
164-
- httpd.h: Fix comment
165-
trunk patch:
166-
- https://svn.apache.org/r1910518
167-
https://svn.apache.org/r1910847
168-
https://svn.apache.org/r1912477
169-
https://svn.apache.org/r1918297
170-
2.4.x patch: svn merge -c 1910518,1910847,1912477,1918297 ^/httpd/httpd/trunk .
171-
+1: jailletc36, jim, ylavic
172-
173160

174161
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
175162
[ New proposals should be added at the end of the list ]

include/httpd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,7 @@ struct request_rec {
11141114
*/
11151115
int double_reverse;
11161116
/** Request flags associated with this request. Use
1117-
* AP_REQUEST_GET_FLAGS() and AP_REQUEST_SET_FLAGS() to access
1117+
* AP_REQUEST_GET_BNOTE() and AP_REQUEST_SET_BNOTE() to access
11181118
* the elements of this field.
11191119
*/
11201120
ap_request_bnotes_t bnotes;

modules/dav/fs/dbm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ static dav_error * dav_fs_dbm_error(dav_db *db, apr_pool_t *p,
100100
/* There might not be a <db> if we had problems creating it. */
101101
if (db == NULL) {
102102
errcode = 1;
103-
errstr = "Could not open property database.";
103+
errstr = "Could not open database.";
104104
if (APR_STATUS_IS_EDSOOPEN(status))
105105
ap_log_error(APLOG_MARK, APLOG_CRIT, status, ap_server_conf, APLOGNO(00576)
106106
"The DBM driver could not be loaded");
@@ -147,7 +147,7 @@ dav_error * dav_dbm_open_direct(apr_pool_t *p, const char *pathname, int ro,
147147
"mod_dav_fs: The DBM library '%s' could not be loaded: %s",
148148
err->reason, err->msg);
149149
return dav_new_error(p, HTTP_INTERNAL_SERVER_ERROR, 1, status,
150-
"Could not load library for property database.");
150+
"Could not load library for database.");
151151
}
152152
if ((status = apr_dbm_open2(&file, driver, pathname,
153153
ro ? APR_DBM_READONLY : APR_DBM_RWCREATE,

support/ab.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ struct data {
297297
#define ap_max(a,b) (((a)>(b))?(a):(b))
298298
#define ap_round_ms(a) ((apr_time_t)((a) + 500)/1000)
299299
#define ap_double_ms(a) ((double)(a)/1000.0)
300-
#define MAX_CONCURRENCY 20000
300+
#define MAX_CONCURRENCY 200000
301301

302302
/* --------------------- GLOBALS ---------------------------- */
303303

@@ -764,6 +764,7 @@ static void ssl_proceed_handshake(struct connection *c)
764764
SSL_get_version(c->ssl),
765765
SSL_CIPHER_get_name(ci),
766766
pk_bits, sk_bits);
767+
if (cert) X509_free(cert);
767768
}
768769
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
769770
if (ssl_tmp_key == NULL) {

0 commit comments

Comments
 (0)