diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2014-07-27 12:48:33 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2014-07-27 12:48:33 -0500 |
commit | 460c03c4195c86b0935e894c4b3d3cdba0775ecb (patch) | |
tree | 880c5da31b3485f2fb9215a1a33b836bf52f0936 /core | |
parent | c2d684969b73207dc981f9d592bb2e82fd5f2562 (diff) |
Updating bash and readline
Diffstat (limited to 'core')
-rw-r--r-- | core/bash/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/core/bash/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch b/core/bash/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch deleted file mode 100644 index c621f0af8..000000000 --- a/core/bash/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur bash-4.2-orig/general.c bash-4.2/general.c ---- bash-4.2-orig/general.c 2010-12-13 06:06:27.000000000 +1000 -+++ bash-4.2/general.c 2013-08-25 21:52:36.681484302 +1000 -@@ -766,7 +766,7 @@ - *nbeg++ = '.'; - - nlen = nend - ntail; -- memcpy (nbeg, ntail, nlen); -+ memmove (nbeg, ntail, nlen); - nbeg[nlen] = '\0'; - - return name; |