summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-shells/bash/files/bash-4.3-compound-array-empty-value.patch')
-rw-r--r--app-shells/bash/files/bash-4.3-compound-array-empty-value.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/app-shells/bash/files/bash-4.3-compound-array-empty-value.patch b/app-shells/bash/files/bash-4.3-compound-array-empty-value.patch
deleted file mode 100644
index 46ffa15f3e8b..000000000000
--- a/app-shells/bash/files/bash-4.3-compound-array-empty-value.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-*** ../bash-4.3/arrayfunc.c 2013-08-02 16:19:59.000000000 -0400
---- arrayfunc.c 2014-03-18 11:08:15.000000000 -0400
-***************
-*** 598,601 ****
---- 598,606 ----
- {
- val = expand_assignment_string_to_string (val, 0);
-+ if (val == 0)
-+ {
-+ val = (char *)xmalloc (1);
-+ val[0] = '\0'; /* like do_assignment_internal */
-+ }
- free_val = 1;
- }