git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103125
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.1.0-dev
[Remove entries to the current 2.0 section below, when backported]
+ *) 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
}
/* 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);
}