You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2007/12/08 10:23:27 UTC

svn commit: r602349 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: rpluem
Date: Sat Dec  8 01:23:26 2007
New Revision: 602349

URL: http://svn.apache.org/viewvc?rev=602349&view=rev
Log:
* If no data is available at this point of time we need to switch into the
  BODY_CHUNK_PART state like we do several lines later in the code in the
  same situation.

Modified:
    httpd/httpd/trunk/modules/http/http_filters.c

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=602349&r1=602348&r2=602349&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Sat Dec  8 01:23:26 2007
@@ -243,6 +243,7 @@
             if (block == APR_NONBLOCK_READ &&
                 ( (rv == APR_SUCCESS && APR_BRIGADE_EMPTY(bb)) ||
                   (APR_STATUS_IS_EAGAIN(rv)) )) {
+                ctx->state = BODY_CHUNK_PART;
                 return APR_EAGAIN;
             }