diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2012-02-14 10:51:12 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-02-14 10:51:12 +0100 |
commit | 7a7bd4b87390d63532b8cce619d6ed1b00b47128 (patch) | |
tree | 8e2e2315c2e81fbebecaa36bfd9794ca179766d9 /package/busybox/busybox-1.19.3/busybox-1.19.3-wget.patch | |
parent | 40281284ad5ab41fea4058d57c130cbae0fb9d70 (diff) | |
download | buildroot-novena-7a7bd4b87390d63532b8cce619d6ed1b00b47128.tar.gz buildroot-novena-7a7bd4b87390d63532b8cce619d6ed1b00b47128.zip |
busybox: bump 1.19.x stable version
Identical to 1.19.3 + patches.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.19.3/busybox-1.19.3-wget.patch')
-rw-r--r-- | package/busybox/busybox-1.19.3/busybox-1.19.3-wget.patch | 29 |
1 files changed, 0 insertions, 29 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 deleted file mode 100644 index e98a506cb..000000000 --- a/package/busybox/busybox-1.19.3/busybox-1.19.3-wget.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- 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; |