ylavic: I think "extra" should be an apr_size_t.
icing: added r1899905 with the proposed changes and assertions.
- *) mod_session: Harden mod_session and avoid overflow in case of indecently large
- session
- trunk patches: https://svn.apache.org/r1900335
- 2.4.x patches: svn merge -c 1900335 ^/httpd/httpd/trunk .
- +1: jailletc36, rpluem, ylavic
-
-
*) mod_http2: remove unscheduling of ongoing tasks when client
behaviour triggers mood change. Fixes https://github.com/icing/mod_h2/issues/231
Trunk version of patch: n.a.
static int identity_count(void *v, const char *key, const char *val)
{
- int *count = v;
+ apr_size_t *count = v;
+
*count += strlen(key) * 3 + strlen(val) * 3 + 2;
return 1;
}
static int identity_concat(void *v, const char *key, const char *val)
{
char *slider = v;
- int length = strlen(slider);
+ apr_size_t length = strlen(slider);
+
slider += length;
if (length) {
*slider = '&';
static apr_status_t session_identity_encode(request_rec * r, session_rec * z)
{
char *buffer = NULL;
- int length = 0;
+ apr_size_t length = 0;
+
if (z->expiry) {
char *expiry = apr_psprintf(z->pool, "%" APR_INT64_T_FMT, z->expiry);
apr_table_setn(z->entries, SESSION_EXPIRY, expiry);