diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-03-26 21:53:15 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-03-26 21:53:15 +0000 |
commit | 9c078e173aa2ce9d386942e8acb6acf811eeeddf (patch) | |
tree | 4e75fb59cfd5a889f9c07197d4118ade21c406a2 /package/busybox/busybox-1.4.1-wgetSEGV.patch | |
parent | 49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e (diff) | |
download | buildroot-novena-9c078e173aa2ce9d386942e8acb6acf811eeeddf.tar.gz buildroot-novena-9c078e173aa2ce9d386942e8acb6acf811eeeddf.zip |
busybox: remove unused configs/patches
Diffstat (limited to 'package/busybox/busybox-1.4.1-wgetSEGV.patch')
-rw-r--r-- | package/busybox/busybox-1.4.1-wgetSEGV.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/package/busybox/busybox-1.4.1-wgetSEGV.patch b/package/busybox/busybox-1.4.1-wgetSEGV.patch deleted file mode 100644 index 8375cc79c..000000000 --- a/package/busybox/busybox-1.4.1-wgetSEGV.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; |