From 4ad813db29ba756a35db6540961c86a4c1f5592b Mon Sep 17 00:00:00 2001 From: wosch Date: Fri, 13 Dec 1996 20:28:24 +0000 Subject: Fix uninitialized memory read for case insensitive search. Harmless. submitted by: purify --- usr.bin/locate/locate/fastfind.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'usr.bin/locate') diff --git a/usr.bin/locate/locate/fastfind.c b/usr.bin/locate/locate/fastfind.c index 79dabfe..82fed56 100644 --- a/usr.bin/locate/locate/fastfind.c +++ b/usr.bin/locate/locate/fastfind.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: fastfind.c,v 1.5 1996/10/23 16:46:47 ache Exp $ + * $Id: fastfind.c,v 1.6 1996/10/27 19:18:06 alex Exp $ */ @@ -185,6 +185,9 @@ fastfind #ifdef FF_ICASE /* set patend char to true */ + for (c = 0; c < UCHAR_MAX + 1; c++) + table[c] = 0; + table[TOLOWER(*patend)] = 1; table[toupper(*patend)] = 1; #endif /* FF_ICASE */ -- cgit v1.1