summaryrefslogtreecommitdiff
path: root/package/diffutils/patches/patch-lib_regex_c
diff options
context:
space:
mode:
Diffstat (limited to 'package/diffutils/patches/patch-lib_regex_c')
-rw-r--r--package/diffutils/patches/patch-lib_regex_c16
1 files changed, 16 insertions, 0 deletions
diff --git a/package/diffutils/patches/patch-lib_regex_c b/package/diffutils/patches/patch-lib_regex_c
new file mode 100644
index 000000000..c4a8bec7b
--- /dev/null
+++ b/package/diffutils/patches/patch-lib_regex_c
@@ -0,0 +1,16 @@
+workaround for uClibc
+--- diffutils-2.8.1.orig/lib/regex.c 2002-03-01 08:44:52.000000000 +0100
++++ diffutils-2.8.1/lib/regex.c 2009-08-28 16:39:02.000000000 +0200
+@@ -8313,12 +8313,8 @@ regerror (errcode, preg, errbuf, errbuf_
+ {
+ if (msg_size > errbuf_size)
+ {
+-#if defined HAVE_MEMPCPY || defined _LIBC
+- *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
+-#else
+ memcpy (errbuf, msg, errbuf_size - 1);
+ errbuf[errbuf_size - 1] = 0;
+-#endif
+ }
+ else
+ memcpy (errbuf, msg, msg_size);