From 8a27bf15dc9b689fce5b201b453dbbce7a94317f Mon Sep 17 00:00:00 2001 From: nico Date: Wed, 16 Jun 2010 13:24:11 +0000 Subject: package/busybox: update to 1.16.2 (bug fix release) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21813 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/busybox/patches/000-upstream-ash.patch | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 package/busybox/patches/000-upstream-ash.patch (limited to 'package/busybox/patches/000-upstream-ash.patch') diff --git a/package/busybox/patches/000-upstream-ash.patch b/package/busybox/patches/000-upstream-ash.patch deleted file mode 100644 index c90e9d25c..000000000 --- a/package/busybox/patches/000-upstream-ash.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- a/shell/ash.c -+++ b/shell/ash.c -@@ -5424,7 +5424,11 @@ rmescapes(char *str, int flag) - size_t fulllen = len + strlen(p) + 1; - - if (flag & RMESCAPE_GROW) { -+ int strloc = str - (char *)stackblock(); - r = makestrspace(fulllen, expdest); -+ /* p and str may be invalidated by makestrspace */ -+ str = (char *)stackblock() + strloc; -+ p = str + len; - } else if (flag & RMESCAPE_HEAP) { - r = ckmalloc(fulllen); - } else { -- cgit v1.2.3