summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar damitha2010-06-28 05:23:41 +0000
committerGravatar damitha2010-06-28 05:23:41 +0000
commit063692aaaf25bf31850f1331fe218a9bb391f5cc (patch)
tree0b8867aa174730d1ae604c7f78660f342985566f /src
parentdb92fe5c0af79fbc07d051a7cb544fc04981eedd (diff)
downloadaxis2c-063692aaaf25bf31850f1331fe218a9bb391f5cc.tar.gz
axis2c-063692aaaf25bf31850f1331fe218a9bb391f5cc.tar.bz2
Applied change AXIS2C-1476
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@958460 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/core/transport/http/server/apache2/apache2_stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transport/http/server/apache2/apache2_stream.c b/src/core/transport/http/server/apache2/apache2_stream.c
index 5e189a7..7c65968 100644
--- a/src/core/transport/http/server/apache2/apache2_stream.c
+++ b/src/core/transport/http/server/apache2/apache2_stream.c
@@ -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;
}