1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

add three missing initializers (CVS 4935)

FossilOrigin-Name: f45f0593cf5dd8c0172b13c300a4a9393540e0d7
This commit is contained in:
rse
2008-03-29 12:39:39 +00:00
parent 8359d8cb9d
commit 867780aea2
3 changed files with 9 additions and 9 deletions

View File

@@ -738,7 +738,7 @@ static Mem *columnMem(sqlite3_stmt *pStmt, int i){
vals = sqlite3_data_count(pStmt);
pOut = &pVm->pResultSet[i];
}else{
static const Mem nullMem = {{0}, 0.0, 0, "", 0, MEM_Null, SQLITE_NULL };
static const Mem nullMem = {{0}, 0.0, 0, "", 0, MEM_Null, SQLITE_NULL, 0, 0, 0 };
if( pVm->db ){
sqlite3_mutex_enter(pVm->db->mutex);
sqlite3Error(pVm->db, SQLITE_RANGE, 0);