summaryrefslogtreecommitdiffstats
path: root/abs/core/grep/13-P.patch
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/grep/13-P.patch')
-rw-r--r--abs/core/grep/13-P.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/abs/core/grep/13-P.patch b/abs/core/grep/13-P.patch
new file mode 100644
index 0000000..9dca4ad
--- /dev/null
+++ b/abs/core/grep/13-P.patch
@@ -0,0 +1,14 @@
+--- grep-2.5.1a/src/search.c.P 2006-02-03 14:08:00.000000000 +0000
++++ grep-2.5.1a/src/search.c 2006-02-03 14:11:20.000000000 +0000
+@@ -1234,8 +1234,9 @@
+ char eol = eolbyte;
+ if (!exact)
+ {
+- end = memchr (end, eol, buflim - end);
+- end++;
++ while (end < buflim)
++ if (*end++ == eol)
++ break;
+ while (buf < beg && beg[-1] != eol)
+ --beg;
+ }