DragonFly BSD
DragonFly submit List (threaded) for 2004-11
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

sysarch


From: Christer Öberg <christer.oberg@xxxxxxxxxx>
Date: Sun, 21 Nov 2004 00:29:37 +0000

Range verification of LDTs in i386_get_ldt() is wrong (arguments are unsigned)

--- sys/i386/i386/sys_machdep.c	2004-11-20 22:29:50.000000000 +0000
+++ sys/i386/i386/sys_machdep.new.c	2004-11-20 22:33:57.000000000 +0000
@@ -333,7 +333,7 @@
 #endif
 
 	/* verify range of LDTs exist */
-	if ((uap->start < 0) || (uap->num <= 0))
+	if (uap->start > MAX_LD) 
 		return(EINVAL);
 
 	s = splhigh();


[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]