summaryrefslogtreecommitdiff
path: root/app-shells/sash/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-shells/sash/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-shells/sash/files')
-rw-r--r--app-shells/sash/files/sash-3.7-builtin.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/app-shells/sash/files/sash-3.7-builtin.patch b/app-shells/sash/files/sash-3.7-builtin.patch
deleted file mode 100644
index be943063efdf..000000000000
--- a/app-shells/sash/files/sash-3.7-builtin.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Nrup sash-3.7.orig/sash.c sash-3.7/sash.c
---- sash-3.7.orig/sash.c 2004-01-14 00:08:03.000000000 -0500
-+++ sash-3.7/sash.c 2004-10-31 00:05:59.000000000 -0400
-@@ -739,6 +739,10 @@ tryBuiltIn(const char * cmd)
- while (*endCmd && !isBlank(*endCmd))
- endCmd++;
-
-+ /* FIXME: command line will segv with -c 12000bytes -solar */
-+ if ((endCmd - cmd) >= sizeof(cmdName))
-+ return FALSE;
-+
- memcpy(cmdName, cmd, endCmd - cmd);
-
- cmdName[endCmd - cmd] = '\0';