From f2c73eaa2010098feaca7952f110ba3b59e6b4a0 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 12 Feb 2007 22:34:54 +0000 Subject: add some more busybox patches from upstream SVN-Revision: 6290 --- package/busybox/patches/150-wget_segv_fix.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package/busybox/patches/150-wget_segv_fix.patch (limited to 'package/busybox/patches/150-wget_segv_fix.patch') 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; -- cgit v1.2.3