PR 40894
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@573903
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.3.0
[ When backported to 2.2.x, remove entry from this file ]
+ *) mod_proxy: Don't lose bytes when a response line arrives in small chunks.
+ PR 40894 [Andrew Rucker Jones <arjones simultan.dyndns.org>]
+
*) mod_rewrite: Add option to suppress URL unescaping
PR 34602 [Guenther Gsenger <guenther.gsenger gmail.com>]
len = (bufflen-1)-(pos-buff);
}
if (len > 0) {
- pos = apr_cpystrn(pos, response, len);
+ memcpy(pos, response, len);
+ pos += len;
}
}
APR_BUCKET_REMOVE(e);
apr_bucket_destroy(e);
}
+ *pos = '\0';
}
return APR_SUCCESS;