1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix compiler warnings. Get the new sqlite3_result_zeroblob64() working

on loadable extensions.

FossilOrigin-Name: f8991e6f726485301c80d2dbb05e7d5c0d283b5d
This commit is contained in:
drh
2015-07-24 17:14:03 +00:00
parent a4d5ae8fa2
commit 6bacdc21ae
6 changed files with 17 additions and 19 deletions

View File

@@ -938,7 +938,7 @@ static int test_config_pagecache(
int objc,
Tcl_Obj *CONST objv[]
){
int sz, N, rc;
int sz, N;
Tcl_Obj *pRes;
static char *buf = 0;
if( objc!=3 ){
@@ -957,10 +957,10 @@ static int test_config_pagecache(
Tcl_SetObjResult(interp, pRes);
if( sz<0 ){
rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, 0, 0, 0);
sqlite3_config(SQLITE_CONFIG_PAGECACHE, 0, 0, 0);
}else{
buf = malloc( sz*N );
rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, buf, sz, N);
sqlite3_config(SQLITE_CONFIG_PAGECACHE, buf, sz, N);
}
return TCL_OK;
}