diff options
author | Mike Baker <mbm@openwrt.org> | 2007-05-10 08:01:55 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2007-05-10 08:01:55 +0000 |
commit | 2bb4aa3e90c0c4e96e06b7615ee761ab0ddc85e9 (patch) | |
tree | 1f50b466d90a4fbe4d8c5636ad8ce5da99ca0b88 /package/busybox/patches/150-wget_segv_fix.patch | |
parent | 324c12d220e179e60ea141b42b422b91a184856c (diff) | |
download | upstream-2bb4aa3e90c0c4e96e06b7615ee761ab0ddc85e9.tar.gz upstream-2bb4aa3e90c0c4e96e06b7615ee761ab0ddc85e9.tar.bz2 upstream-2bb4aa3e90c0c4e96e06b7615ee761ab0ddc85e9.zip |
update to busybox 1.4.2 (fixes #1653)
SVN-Revision: 7157
Diffstat (limited to 'package/busybox/patches/150-wget_segv_fix.patch')
-rw-r--r-- | package/busybox/patches/150-wget_segv_fix.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/package/busybox/patches/150-wget_segv_fix.patch b/package/busybox/patches/150-wget_segv_fix.patch deleted file mode 100644 index 8375cc79cd..0000000000 --- a/package/busybox/patches/150-wget_segv_fix.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -urN busybox-1.4.1/networking/wget.c busybox-1.4.1-wgetSEGV/networking/wget.c ---- busybox-1.4.1/networking/wget.c 2007-01-24 22:34:34.000000000 +0100 -+++ busybox-1.4.1-wgetSEGV/networking/wget.c 2007-02-11 17:21:18.000000000 +0100 -@@ -543,7 +543,9 @@ - p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p; - p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p; - if (!sp) { -- h->path = ""; -+ /* must be writable because of bb_get_last_path_component() */ -+ static char nullstr[] = ""; -+ h->path = nullstr; - } else if (*sp == '/') { - *sp = '\0'; - h->path = sp + 1; |