Searched refs:mxCursor (Results 1 – 1 of 1) sorted by relevance
422 static int expandCursorArraySize(Vdbe *p, int mxCursor){ in expandCursorArraySize() argument423 if( mxCursor>=p->nCursor ){ in expandCursorArraySize()424 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) ); in expandCursorArraySize()427 memset(&p->aCsr[p->nCursor], 0, sizeof(Cursor)*(mxCursor+1-p->nCursor)); in expandCursorArraySize()428 p->nCursor = mxCursor+1; in expandCursorArraySize()