Skip to content

Commit 7808644

Browse files
committed
copy all the chars in ETag, included the last '"'
bz #69957 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1931953 13f79535-47bb-0310-9956-ffa450edef68
1 parent 56da835 commit 7808644

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/util_etag.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ static void etag_end(char *next, const char *vlv, apr_size_t vlv_len)
8080
{
8181
if (vlv) {
8282
*next++ = ';';
83-
apr_cpystrn(next, vlv, vlv_len);
83+
apr_cpystrn(next, vlv, vlv_len + 1);
8484
}
8585
else {
8686
*next++ = '"';

0 commit comments

Comments
 (0)