Module Name:    src
Committed By:   martin
Date:           Fri Mar 18 09:07:20 UTC 2011

Modified Files:
        src/lib/libc/gen: unvis.c

Log Message:
Test the proper array index. Discovered by sparc64 automatic test runs.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/lib/libc/gen/unvis.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/gen/unvis.c
diff -u src/lib/libc/gen/unvis.c:1.35 src/lib/libc/gen/unvis.c:1.36
--- src/lib/libc/gen/unvis.c:1.35	Sun Mar 13 07:40:44 2011
+++ src/lib/libc/gen/unvis.c	Fri Mar 18 09:07:20 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: unvis.c,v 1.35 2011/03/13 07:40:44 mrg Exp $	*/
+/*	$NetBSD: unvis.c,v 1.36 2011/03/18 09:07:20 martin Exp $	*/
 
 /*-
  * Copyright (c) 1989, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)unvis.c	8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: unvis.c,v 1.35 2011/03/13 07:40:44 mrg Exp $");
+__RCSID("$NetBSD: unvis.c,v 1.36 2011/03/18 09:07:20 martin Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -438,7 +438,7 @@
 				break;
 		}
 
-		if (*cp == __arraycount(nv))
+		if (ia == __arraycount(nv))
 			goto bad;
 
 		if (uc != 0) {

Reply via email to