Blame SOURCES/patch.1.2

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