summaryrefslogtreecommitdiff
path: root/package/busybox/busybox-1.16.1-ash.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2010-06-14 09:45:38 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-06-14 09:45:38 +0200
commit6ed87eac98833db52fc76abbee70809a6adeafbf (patch)
tree379e9d548a1ba6c2794baa1cf814d7045adae55a /package/busybox/busybox-1.16.1-ash.patch
parentdff1d590b2a0fadf58b6eed60029b2ecbab7c710 (diff)
busybox: bump 1.16.x version
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.16.1-ash.patch')
-rw-r--r--package/busybox/busybox-1.16.1-ash.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/package/busybox/busybox-1.16.1-ash.patch b/package/busybox/busybox-1.16.1-ash.patch
deleted file mode 100644
index 629874e21..000000000
--- a/package/busybox/busybox-1.16.1-ash.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -urpN busybox-1.16.1/shell/ash.c busybox-1.16.1-ash/shell/ash.c
---- busybox-1.16.1/shell/ash.c 2010-03-28 19:44:04.000000000 +0200
-+++ busybox-1.16.1-ash/shell/ash.c 2010-04-26 14:18:36.000000000 +0200
-@@ -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 {