summaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2011-12-18 22:00:33 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2011-12-18 22:00:33 +0100
commit2d7d697fbfc2273ed1decd3b1c13411ba7ba24a4 (patch)
tree26b2c5c96a9afdcf1411b4478e4fc42a93882f18 /package/busybox
parent54b2f131067003fc53240b9bd4497a25c145591a (diff)
downloadbuildroot-novena-2d7d697fbfc2273ed1decd3b1c13411ba7ba24a4.tar.gz
buildroot-novena-2d7d697fbfc2273ed1decd3b1c13411ba7ba24a4.zip
busybox: add 1.19.3 for wget redirect handling
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/busybox-1.19.3/busybox-1.19.3-wget.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.19.3/busybox-1.19.3-wget.patch b/package/busybox/busybox-1.19.3/busybox-1.19.3-wget.patch
new file mode 100644
index 000000000..e98a506cb
--- /dev/null
+++ b/package/busybox/busybox-1.19.3/busybox-1.19.3-wget.patch
@@ -0,0 +1,29 @@
+--- busybox-1.19.3/networking/wget.c
++++ busybox-1.19.3-wget/networking/wget.c
+@@ -552,6 +552,7 @@ static void download_one_url(const char
+ FILE *dfp; /* socket to ftp server (data) */
+ char *proxy = NULL;
+ char *fname_out_alloc;
++ char *redirected_path = NULL;
+ struct host_info server;
+ struct host_info target;
+
+@@ -794,8 +795,8 @@ However, in real world it was observed t
+ bb_error_msg_and_die("too many redirections");
+ fclose(sfp);
+ if (str[0] == '/') {
+- free(target.allocated);
+- target.path = target.allocated = xstrdup(str+1);
++ free(redirected_path);
++ target.path = redirected_path = xstrdup(str+1);
+ /* lsa stays the same: it's on the same server */
+ } else {
+ parse_url(str, &target);
+@@ -850,6 +851,7 @@ However, in real world it was observed t
+ free(server.allocated);
+ free(target.allocated);
+ free(fname_out_alloc);
++ free(redirected_path);
+ }
+
+ int wget_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;