aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/wget.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c
index 26b62cc58..b8cd54964 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -880,7 +880,14 @@ However, in real world it was observed that some web servers
880 */ 880 */
881 while ((str = gethdr(buf, sizeof(buf), sfp /*, &n*/)) != NULL) { 881 while ((str = gethdr(buf, sizeof(buf), sfp /*, &n*/)) != NULL) {
882 /* gethdr converted "FOO:" string to lowercase */ 882 /* gethdr converted "FOO:" string to lowercase */
883 smalluint key = index_in_strings(keywords, buf) + 1; 883 smalluint key;
884 /* strip trailing whitespace */
885 char *s = strchrnul(str, '\0') - 1;
886 while (s >= str && (*s == ' ' || *s == '\t')) {
887 *s = '\0';
888 s--;
889 }
890 key = index_in_strings(keywords, buf) + 1;
884 if (key == KEY_content_length) { 891 if (key == KEY_content_length) {
885 content_len = BB_STRTOOFF(str, NULL, 10); 892 content_len = BB_STRTOOFF(str, NULL, 10);
886 if (errno || content_len < 0) { 893 if (errno || content_len < 0) {