From owner-cvs-all Mon Nov 22 20: 9:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6695914A0E; Mon, 22 Nov 1999 20:09:43 -0800 (PST) (envelope-from green@FreeBSD.org) Received: (from green@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA85227; Mon, 22 Nov 1999 20:09:15 -0800 (PST) (envelope-from green@FreeBSD.org) Message-Id: <199911230409.UAA85227@freefall.freebsd.org> From: Brian Feldman Date: Mon, 22 Nov 1999 20:09:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk green 1999/11/22 20:09:15 PST Modified files: sys/i386/i386 machdep.c Log: Fix a confusion between osigcontext and ucontext_t in the previous commit. Since an osigcontext is smaller, if you check for a valid (much larger sized) ucontext_t and it fails, we bogusly would reject the osigcontext as per rev 1.378. Instead, check for osigcontext range validity first, and ucontext_t later. This unbreaks Netscape. Pointed to the right commit by: peter Revision Changes Path 1.378 +17 -7 src/sys/i386/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message