Snapshot of upstream SQLite 3.7.15.2

This commit is contained in:
Nick Parker
2013-01-15 16:38:05 -06:00
parent 801e036cd8
commit 7d88842525
139 changed files with 8590 additions and 4361 deletions
+3 -2
View File
@@ -346,8 +346,9 @@ static int test_intarray_bind(
return TCL_ERROR;
}
for(i=0; i<n; i++){
a[i] = 0;
Tcl_GetWideIntFromObj(0, objv[i+2], &a[i]);
Tcl_WideInt x = 0;
Tcl_GetWideIntFromObj(0, objv[i+2], &x);
a[i] = x;
}
rc = sqlite3_intarray_bind(pArray, n, a, sqlite3_free);
if( rc!=SQLITE_OK ){