mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Remove an incorrect assert() statement that was being triggered by ioerr tests run in utf-16 mode. (CVS 4035)
FossilOrigin-Name: c6575173be13296fbe57932f2d24a568f6d552ff
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
** May you share freely, never taking more than you give.
|
||||
**
|
||||
*************************************************************************
|
||||
** $Id: btree.c,v 1.386 2007/05/24 07:22:42 danielk1977 Exp $
|
||||
** $Id: btree.c,v 1.387 2007/05/24 07:47:07 danielk1977 Exp $
|
||||
**
|
||||
** This file implements a external (disk-based) database using BTrees.
|
||||
** See the header comment on "btreeInt.h" for additional information.
|
||||
@@ -2783,7 +2783,6 @@ static int accessPayload(
|
||||
} else
|
||||
#endif
|
||||
rc = getOverflowPage(pBt, nextPage, 0, &nextPage);
|
||||
assert(rc==SQLITE_OK || nextPage==0);
|
||||
offset -= ovflSize;
|
||||
}else{
|
||||
/* Need to read this page properly. It contains some of the
|
||||
|
Reference in New Issue
Block a user