Changes with Apache 2.0.50
+ *) core_output_filter: Fix bug that could result in sending
+ garbage over the network when module handlers construct
+ bucket brigades containing multiple file buckets all referencing
+ the same open file descriptor. [Bojan Smojver]
+
*) Fix memory corruption problem with ap_custom_response() function.
The core per-dir config would later point to request pool data
that would be reused for different purposes on different requests.
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2004/03/25 02:07:27 $]
+Last modified at [$Date: 2004/03/25 02:20:27 $]
Release:
support/ab.c: r1.143
+1: jjclar
- *) Bojan Smojver's fix to core_output_filter emulate_sendfile()
- Fix bug that could result in sending garbage over the network
- when module handlers construct bucket brigades containing
- multiple file buckets all referencing the same open file
- descriptor.
- server/core.c?r1=1.268&r2=1.269
- +1: stoddard, rederpj, jwoolley
-
*) work around MSIE Digest auth bug - if AuthDigestEnableQueryStringHack
is set in r->subprocess_env allow mismatched query strings to pass.
PR: 27758
}
/* Seek the file to 'offset' */
- if (offset != 0 && rv == APR_SUCCESS) {
+ if (offset >= 0 && rv == APR_SUCCESS) {
rv = apr_file_seek(fd, APR_SET, &offset);
}