diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-06-16 13:24:11 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-06-16 13:24:11 +0000 |
commit | 3dc2c3bb4d4569ab3387934ce55cca9adda42eae (patch) | |
tree | 59db0c8fcfba666a8c67537f41ef2ec1a71f378b /package/busybox/patches/000-upstream-ash.patch | |
parent | 3e52d0529655eacc581dd1fa14553191f0fc9c1e (diff) | |
download | upstream-3dc2c3bb4d4569ab3387934ce55cca9adda42eae.tar.gz upstream-3dc2c3bb4d4569ab3387934ce55cca9adda42eae.tar.bz2 upstream-3dc2c3bb4d4569ab3387934ce55cca9adda42eae.zip |
package/busybox: update to 1.16.2 (bug fix release)
SVN-Revision: 21813
Diffstat (limited to 'package/busybox/patches/000-upstream-ash.patch')
-rw-r--r-- | package/busybox/patches/000-upstream-ash.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/package/busybox/patches/000-upstream-ash.patch b/package/busybox/patches/000-upstream-ash.patch deleted file mode 100644 index c90e9d25c8..0000000000 --- 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 { |