summaryrefslogtreecommitdiff
path: root/shells/bash2/files/patch-redir.c
diff options
context:
space:
mode:
Diffstat (limited to 'shells/bash2/files/patch-redir.c')
-rw-r--r--shells/bash2/files/patch-redir.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/shells/bash2/files/patch-redir.c b/shells/bash2/files/patch-redir.c
deleted file mode 100644
index 259e4b1d87bc..000000000000
--- a/shells/bash2/files/patch-redir.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- redir.c.orig Tue Mar 12 12:27:38 2002
-+++ redir.c Thu May 5 07:41:18 2005
-@@ -263,7 +263,7 @@ write_here_string (fd, redirectee)
- int herelen, n, e;
-
- herestr = expand_string_to_string (redirectee->word, 0);
-- herelen = strlen (herestr);
-+ herelen = (herestr == NULL) ? 0 : strlen (herestr);
-
- n = write (fd, herestr, herelen);
- if (n == herelen)