You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by William A Rowe Jr <wr...@rowe-clan.net> on 2016/08/05 15:13:57 UTC

Re: svn commit: r1755343 - /httpd/httpd/trunk/server/protocol.c

On Fri, Aug 5, 2016 at 10:08 AM, <yl...@apache.org> wrote:

> Author: ylavic
> Date: Fri Aug  5 15:08:24 2016
> New Revision: 1755343
>
> URL: http://svn.apache.org/viewvc?rev=1755343&view=rev
> Log:
> Follow up to r1755264.
> Don't crash when ap_rgetline() returns a NULL field on ENOSPC.
>
> +                              (field && *field) ? ": " : "",
> +                              (field) ? field_name_len(field) : 0,
> +                              (field) ? field : "");
>

Much cleaner than the code I was about to restore. Thanks!

Bill