*buf_ptr = emalloc(*buf_len + 1);
} else {
size_t new_len = *buf_len << 2;
- char *new_ptr = erealloc(*buf_ptr, new_len + 1);
+ char *new_ptr = erealloc_recoverable(*buf_ptr, new_len + 1);
if (new_ptr) {
*buf_ptr = new_ptr;
*buf_len = new_len;
} else {
- *iteration = INT_MAX;
+ *iteration = INT_MAX-1; /* avoid integer overflow on increment op */
}
}
}
add_next_index_stringl(&zsupported, "gzip", lenof("gzip"), 1);
add_next_index_stringl(&zsupported, "deflate", lenof("deflate"), 1);
+ HTTP_G(send).gzip_encoding = 0;
+
if (selected = http_negotiate_encoding(&zsupported)) {
STATUS hs = FAILURE;
char *encoding = NULL;
}
if (SUCCESS == hs) {
http_send_header_string("Vary: Accept-Encoding");
- } else {
- HTTP_G(send).gzip_encoding = 0;
}
}
}
zval_dtor(&zsupported);
- return 1;
+ return HTTP_G(send).gzip_encoding;
#endif
}
}
http_encoding_stream *s = *((http_encoding_stream **) buffer);
http_encoding_stream_update(s, data, data_len, &encoded, &encoded_len);
- phpstr_chunked_output(&s->storage, data, data_len, HTTP_G(send).buffer_size, _http_flush TSRMLS_CC);
+ phpstr_chunked_output(&s->storage, encoded, encoded_len, HTTP_G(send).buffer_size, _http_flush TSRMLS_CC);
efree(encoded);
#else
http_error(HE_ERROR, HTTP_E_RESPONSE, "Attempt to send GZIP response despite being able to do so; please report this bug");
if (HTTP_G(send).gzip_encoding) {
#ifdef HTTP_HAVE_ZLIB
char *encoded = NULL;
- size_t encoded_len;
+ size_t encoded_len = 0;
http_encoding_stream *s = *((http_encoding_stream **) buffer);
http_encoding_stream_finish(s, &encoded, &encoded_len);
- buffer = &s->storage;
- phpstr_chunked_output((phpstr **) buffer, encoded, encoded_len, HTTP_G(send).buffer_size, _http_flush TSRMLS_CC);
+ phpstr_chunked_output(&s->storage, encoded, encoded_len, 0, _http_flush TSRMLS_CC);
STR_FREE(encoded);
+ efree(s);
#else
http_error(HE_ERROR, HTTP_E_RESPONSE, "Attempt to send GZIP response despite being able to do so; please report this bug");
#endif
+ } else {
+ phpstr_chunked_output((phpstr **) buffer, NULL, 0, 0, _http_flush TSRMLS_CC);
}
- phpstr_chunked_output((phpstr **) buffer, NULL, 0, 0, _http_flush TSRMLS_CC);
}
/* }}} */