blob: 611df5d25943005e348b112bd2a14914cc3e4f8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Upstream-Status: Pending
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
--- src/man.c 2008-12-21 19:17:31.000000000 +0100
+++ src/man.c.oden 2008-12-21 19:17:38.000000000 +0100
@@ -391,7 +391,7 @@ again:
beg++;
end = beg;
- while (*end != ' ' && *end != '\t' && *end != '\n' && *end != '\0')
+ while (*end != ' ' && *end != '\t' && *end != '\n' && *end != '\0' && (end-buf)<BUFSIZE)
end++; /* note that buf is NUL-terminated */
*end = '\0';
|