summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-shells/dash/files/dash-0.5.3-read-length.patch')
-rw-r--r--app-shells/dash/files/dash-0.5.3-read-length.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/app-shells/dash/files/dash-0.5.3-read-length.patch b/app-shells/dash/files/dash-0.5.3-read-length.patch
deleted file mode 100644
index 07bf834d37d2..000000000000
--- a/app-shells/dash/files/dash-0.5.3-read-length.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/expand.c
-+++ src/expand.c
-@@ -1643,7 +1643,10 @@
- size_t fulllen = len + strlen(p) + 1;
-
- if (flag & RMESCAPE_GROW) {
-+ int strloc = str - (char *)stackblock();
- r = makestrspace(fulllen, expdest);
-+ str = (char *)stackblock() + strloc;
-+ p = str + len;
- } else if (flag & RMESCAPE_HEAP) {
- r = ckmalloc(fulllen);
- } else {