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

Avoid a confusing (though correct) argument to the sqlite3_result_blob()

function in the implementation of ANALYZE.

FossilOrigin-Name: 4cae93f8ae8fb3fe38fd5dc7d3a5ea0d11552841
This commit is contained in:
drh
2014-09-01 22:34:54 +00:00
parent 832436d145
commit 975e076681
3 changed files with 9 additions and 9 deletions

View File

@@ -467,7 +467,7 @@ static void statInit(
#endif
/* Return a pointer to the allocated object to the caller */
sqlite3_result_blob(context, p, sizeof(p), stat4Destructor);
sqlite3_result_blob(context, p, sizeof(*p), stat4Destructor);
}
static const FuncDef statInitFuncdef = {
2+IsStat34, /* nArg */