You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-commits@axis.apache.org by da...@apache.org on 2010/06/28 07:23:42 UTC

svn commit: r958460 - /axis/axis2/c/core/trunk/src/core/transport/http/server/apache2/apache2_stream.c

Author: damitha
Date: Mon Jun 28 05:23:41 2010
New Revision: 958460

URL: http://svn.apache.org/viewvc?rev=958460&view=rev
Log:
Applied change AXIS2C-1476

Modified:
    axis/axis2/c/core/trunk/src/core/transport/http/server/apache2/apache2_stream.c

Modified: axis/axis2/c/core/trunk/src/core/transport/http/server/apache2/apache2_stream.c
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/src/core/transport/http/server/apache2/apache2_stream.c?rev=958460&r1=958459&r2=958460&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/src/core/transport/http/server/apache2/apache2_stream.c (original)
+++ axis/axis2/c/core/trunk/src/core/transport/http/server/apache2/apache2_stream.c Mon Jun 28 05:23:41 2010
@@ -111,7 +111,7 @@ apache2_stream_read(
     {
         read = apache2_ap_get_client_block(stream_impl->request, (char *) buffer + len,
                                    count - len);
-        if(read > 0)
+        if(read > 0 && read != 0xFFFFFFFF)
         {
             len += read;
         }