https://bz.apache.org/bugzilla/show_bug.cgi?id=61220

--- Comment #4 from William A. Rowe Jr. <[email protected]> ---
Yes, that line 1109 is a issue. But it was caused by a late bugfix at
https://github.com/apache/httpd/blob/2.2.x/server/protocol.c#L1085

Thinking that since the zero-char and single-char resolve to the same pointers,
a really simple fix to line 1109 is;

                if (tmp_field == last_field && !*last_field) {

if you want to test that fix out.

The idea of this code block is to look as similar to this code as possible;

https://github.com/apache/httpd/blob/2.2.31/server/protocol.c#L810

with two exceptions; empty fields always prohibited, and trailing whitespace
after the field name always prohibited. There may be a cleaner path than the
current release plus the hack above to get from point A to point B.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to