Submitted by: Christophe Jaillet <christophe.jaillet wanadoo.fr>
Reviewed by: Ruediger Pluem
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@345686
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.3.0
[Remove entries to the current 2.0 and 2.2 section below, when backported]
+ *) mod_negotiation: Minor performance tweak by reusing already calculated
+ strlen.
+ [Ruediger Pluem, Christophe Jaillet <christophe.jaillet wanadoo.fr>]
+
*) mod_authz_dbd: SQL authz with Login/Session support [Nick Kew]
*) Fix typo in ProxyStatus syntax error message.
return -1;
}
bodylen = endbody - buffer;
- endbody += strlen(tag);
+ endbody += taglen;
/* Skip all the trailing cruft after the end tag to the next line */
while (*endbody) {
if (*endbody == '\n') {