diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-04-19 14:19:41 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-04-19 14:19:41 +0200 |
commit | 1c356948f137d46872d6af17d586960517cf100a (patch) | |
tree | fc8072d0ad2353bc72c73e3676301b52b36431d4 /shell/hush.c | |
parent | af6012a1a7dcfc8eb2321e3adaaae3a0778d5a15 (diff) | |
download | busybox-w32-1c356948f137d46872d6af17d586960517cf100a.tar.gz busybox-w32-1c356948f137d46872d6af17d586960517cf100a.tar.bz2 busybox-w32-1c356948f137d46872d6af17d586960517cf100a.zip |
httpd: use full size of iobuf[] when piping CGI data
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-rw-r--r-- | shell/hush.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/shell/hush.c b/shell/hush.c index d745148f4..b3ae73b9b 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -363,9 +363,6 @@ | |||
363 | #ifndef F_DUPFD_CLOEXEC | 363 | #ifndef F_DUPFD_CLOEXEC |
364 | # define F_DUPFD_CLOEXEC F_DUPFD | 364 | # define F_DUPFD_CLOEXEC F_DUPFD |
365 | #endif | 365 | #endif |
366 | #ifndef PIPE_BUF | ||
367 | # define PIPE_BUF 4096 /* amount of buffering in a pipe */ | ||
368 | #endif | ||
369 | 366 | ||
370 | #if ENABLE_FEATURE_SH_EMBEDDED_SCRIPTS && !(ENABLE_ASH || ENABLE_SH_IS_ASH || ENABLE_BASH_IS_ASH) | 367 | #if ENABLE_FEATURE_SH_EMBEDDED_SCRIPTS && !(ENABLE_ASH || ENABLE_SH_IS_ASH || ENABLE_BASH_IS_ASH) |
371 | # include "embedded_scripts.h" | 368 | # include "embedded_scripts.h" |