aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2006-11-17 22:58:29 +0000
committerVincent Richard <[email protected]>2006-11-17 22:58:29 +0000
commitc31f38f10874e0d99f6faaa18aa186b993bdafc0 (patch)
tree095dcea09f3f6c4658eaa5790b2c805bbec638e7 /src
parentFixed maximum line length bug. (diff)
downloadvmime-c31f38f10874e0d99f6faaa18aa186b993bdafc0.tar.gz
vmime-c31f38f10874e0d99f6faaa18aa186b993bdafc0.zip
Temporary fix for socket stream copy.
Diffstat (limited to 'src')
-rw-r--r--src/utility/stream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utility/stream.cpp b/src/utility/stream.cpp
index 549fb6e3..f2a89a55 100644
--- a/src/utility/stream.cpp
+++ b/src/utility/stream.cpp
@@ -57,7 +57,7 @@ const stream::size_type bufferedStreamCopy(inputStream& is, outputStream& os)
const stream::size_type bufferedStreamCopy(inputStream& is, outputStream& os,
const stream::size_type length, progressListener* progress)
{
- stream::value_type buffer[65536];
+ stream::value_type buffer[16384];
stream::size_type total = 0;
if (progress != NULL)