persistentstorage/sql/SQLite/btree.c
branchRCL_3
changeset 24 cc28652e0254
parent 23 26645d81f48d
equal deleted inserted replaced
23:26645d81f48d 24:cc28652e0254
  3019   Pgno ovfl,                   /* Overflow page */
  3019   Pgno ovfl,                   /* Overflow page */
  3020   MemPage **ppPage,            /* OUT: MemPage handle */
  3020   MemPage **ppPage,            /* OUT: MemPage handle */
  3021   Pgno *pPgnoNext              /* OUT: Next overflow page number */
  3021   Pgno *pPgnoNext              /* OUT: Next overflow page number */
  3022 ){
  3022 ){
  3023   Pgno next = 0;
  3023   Pgno next = 0;
  3024   int rc = SQLITE_OK;          /* Initialized to placate warning */
  3024   int rc;
  3025 
  3025 
  3026   assert( sqlite3_mutex_held(pBt->mutex) );
  3026   assert( sqlite3_mutex_held(pBt->mutex) );
  3027   /* One of these must not be NULL. Otherwise, why call this function? */
  3027   /* One of these must not be NULL. Otherwise, why call this function? */
  3028   assert(ppPage || pPgnoNext);
  3028   assert(ppPage || pPgnoNext);
  3029 
  3029