From owner-cvs-sys Tue Nov 12 12:00:54 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA21426 for cvs-sys-outgoing; Tue, 12 Nov 1996 12:00:54 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA21322; Tue, 12 Nov 1996 12:00:29 -0800 (PST) Date: Tue, 12 Nov 1996 12:00:29 -0800 (PST) From: Bruce Evans Message-Id: <199611122000.MAA21322@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/i386/i386 userconfig.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/11/12 12:00:27 Modified: sys/i386/i386 userconfig.c Log: Fixed buffer overflow for large values in editval(). The buffers were one too small for (hex) 12345678 and 4 too small for -1234567890. Large values can be created by config and userconfig although not (previously) by visual userconfig. Fixed a sign extension bug for backspacing on "negative" hex values in editval(). Increased field width and range for `flags' so that all possible values can be displayed and edited. Revision Changes Path 1.68 +5 -5 src/sys/i386/i386/userconfig.c