christos d5632de9bf Don't do:
if ((xdrp->x_handy -= need) < 0)
		return FALSE;

because by repeatedly calling this we can cause overflow, and then overwrite
valid memory. Instead do:

	if (xdrp->x_handy < need)
		return FALSE;
	xdrp->x_handy -= need;
2003-03-16 15:42:22 +00:00
..
2003-03-16 15:42:22 +00:00
2003-03-10 21:21:10 +00:00
2003-03-09 01:03:54 +00:00
2003-03-09 01:03:54 +00:00
2003-03-08 09:53:45 +00:00
2003-03-09 00:42:56 +00:00
2003-03-08 08:03:34 +00:00
2003-03-08 07:42:33 +00:00
2003-03-09 00:42:56 +00:00
2003-03-09 00:42:56 +00:00
2003-03-08 07:42:33 +00:00
2003-03-08 07:42:33 +00:00