diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-16 00:42:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-16 00:42:45 +0000 |
commit | dcf53c92ea15715a4406b9230a1c68943501ffb2 (patch) | |
tree | 1d6ac3cb6ae47126af1dc54f4f0f5bac7afc49b7 /sys/arch/sun3/include/fbio.h | |
parent | 3b1414ef904bbd7e35b23fc1509a3ea20e822cae (diff) |
Add some missing lengths checks when passing data from userland to
kernel. From based on NetBSD patches.
Diffstat (limited to 'sys/arch/sun3/include/fbio.h')
-rw-r--r-- | sys/arch/sun3/include/fbio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sun3/include/fbio.h b/sys/arch/sun3/include/fbio.h index d5352e84c40..511daa3b24b 100644 --- a/sys/arch/sun3/include/fbio.h +++ b/sys/arch/sun3/include/fbio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fbio.h,v 1.2 1997/09/21 04:21:09 niklas Exp $ */ +/* $OpenBSD: fbio.h,v 1.3 2001/09/16 00:42:44 millert Exp $ */ /* $NetBSD: fbio.h,v 1.3 1994/11/21 21:33:40 gwr Exp $ */ /* @@ -105,8 +105,8 @@ struct fbinfo { * Color map I/O. */ struct fbcmap { - int index; /* first element (0 origin) */ - int count; /* number of elements */ + u_int index; /* first element (0 origin) */ + u_int count; /* number of elements */ u_char *red; /* red color map elements */ u_char *green; /* green color map elements */ u_char *blue; /* blue color map elements */ |