You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2008/04/26 00:03:32 UTC

svn commit: r651707 - /apr/apr/branches/1.3.x/file_io/unix/copy.c

Author: bojan
Date: Fri Apr 25 15:03:30 2008
New Revision: 651707

URL: http://svn.apache.org/viewvc?rev=651707&view=rev
Log:
Backport r651174 and 651704 from the trunk
Make copy buffer bigger
PR #44193

Modified:
    apr/apr/branches/1.3.x/file_io/unix/copy.c

Modified: apr/apr/branches/1.3.x/file_io/unix/copy.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/file_io/unix/copy.c?rev=651707&r1=651706&r2=651707&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/file_io/unix/copy.c (original)
+++ apr/apr/branches/1.3.x/file_io/unix/copy.c Fri Apr 25 15:03:30 2008
@@ -54,7 +54,8 @@
 
     /* Copy bytes till the cows come home. */
     while (1) {
-        char buf[BUFSIZ];
+        char buf[BUFSIZ > APR_FILE_DEFAULT_BUFSIZE ? BUFSIZ
+                                                   : APR_FILE_DEFAULT_BUFSIZE];
         apr_size_t bytes_this_time = sizeof(buf);
         apr_status_t read_err;
         apr_status_t write_err;