7809d0
*** btree/bt_split.c	Tue Jul 26 14:22:02 1994
7809d0
--- btree/bt_split.c	Sat Jan  4 14:38:55 1997
7809d0
***************
7809d0
*** 673,679 ****
7809d0
  		 * where we decide to try and copy too much onto the left page.
7809d0
  		 * Make sure that doesn't happen.
7809d0
  		 */
7809d0
! 		if (skip <= off && used + nbytes >= full) {
7809d0
  			--off;
7809d0
  			break;
7809d0
  		}
7809d0
--- 673,679 ----
7809d0
  		 * where we decide to try and copy too much onto the left page.
7809d0
  		 * Make sure that doesn't happen.
7809d0
  		 */
7809d0
! 		if (skip <= off && used + nbytes >= full || nxt == top - 1) {
7809d0
  			--off;
7809d0
  			break;
7809d0
  		}