On 3/31/20 1:19 AM, Yann Ylavic wrote:
> Index: server/core_filters.c
> ===================================================================
> --- server/core_filters.c (revision 1875881)
> +++ server/core_filters.c (working copy)
> @@ -543,6 +543,12 @@ static apr_status_t send_brigade_nonblocking(apr_s
>
> rv = apr_bucket_read(bucket, &data, &length, APR_BLOCK_READ);
> }
> + if (APR_STATUS_IS_EOF(rv)) {
> + /* Morphing bucket exhausted, next. */
> + apr_bucket_delete(bucket);
> + rv = APR_SUCCESS;
> + continue;
> + }
> if (rv != APR_SUCCESS) {
> goto cleanup;
> }
How is the above related to the issue here? I guess this is something probably
all callers to apr_bucket_read need to take care
of, correct?
Regards
RĂ¼diger
- Re: svn commit: r1874775 - /httpd/httpd/trunk/test/README.t... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/httpd/trunk/test/REA... Graham Leggett
- Re: svn commit: r1874775 - /httpd/httpd/trunk/test... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/httpd/trunk/... Graham Leggett
- Re: svn commit: r1874775 - /httpd/httpd/tr... Joe Orton
- Re: svn commit: r1874775 - /httpd/htt... Graham Leggett
- Re: svn commit: r1874775 - /httpd/htt... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/htt... Yann Ylavic
- Re: svn commit: r1874775 - /httpd/htt... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/htt... Yann Ylavic
- Re: svn commit: r1874775 - /httpd/htt... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/htt... Yann Ylavic
- Re: svn commit: r1874775 - /httpd/htt... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/htt... Joe Orton
- Re: svn commit: r1874775 - /httpd/htt... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/htt... Joe Orton
- Re: svn commit: r1874775 - /httpd/htt... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/htt... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/htt... Yann Ylavic
- Re: svn commit: r1874775 - /httpd/htt... Ruediger Pluem
- Re: svn commit: r1874775 - /httpd/htt... Joe Orton
