diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-02-12 22:34:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-02-12 22:34:54 +0000 |
commit | 2c521d1050c9cde2baa0b4d14be289457c3265b7 (patch) | |
tree | bf193707c5e3bb00a54b6a8c4832e931347b7d03 /package/busybox/patches/150-wget_segv_fix.patch | |
parent | 6bc4d98ec7d062711ae019882ec2e7dc21c365ea (diff) | |
download | upstream-2c521d1050c9cde2baa0b4d14be289457c3265b7.tar.gz upstream-2c521d1050c9cde2baa0b4d14be289457c3265b7.tar.bz2 upstream-2c521d1050c9cde2baa0b4d14be289457c3265b7.zip |
add some more busybox patches from upstream
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6290 3c298f89-4303-0410-b956-a3cf2f4a3e73
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, 14 insertions, 0 deletions
diff --git a/package/busybox/patches/150-wget_segv_fix.patch b/package/busybox/patches/150-wget_segv_fix.patch new file mode 100644 index 0000000000..8375cc79cd --- /dev/null +++ b/package/busybox/patches/150-wget_segv_fix.patch @@ -0,0 +1,14 @@ +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; |