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