mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Add evidence mark comments to source code. Add additional information to the
documentation of sqlite3_release_memory(). Fix a minor inefficiency in mem1.c that was discovered while writing requirements tests. FossilOrigin-Name: 53b0c03fd33d2d8141fd386de5493fec64456042
This commit is contained in:
@@ -495,6 +495,12 @@ void *sqlite3_user_data(sqlite3_context *p){
|
||||
/*
|
||||
** Extract the user data from a sqlite3_context structure and return a
|
||||
** pointer to it.
|
||||
**
|
||||
** IMPLEMENTATION-OF: R-46798-50301 The sqlite3_context_db_handle() interface
|
||||
** returns a copy of the pointer to the database connection (the 1st
|
||||
** parameter) of the sqlite3_create_function() and
|
||||
** sqlite3_create_function16() routines that originally registered the
|
||||
** application defined function.
|
||||
*/
|
||||
sqlite3 *sqlite3_context_db_handle(sqlite3_context *p){
|
||||
assert( p && p->pFunc );
|
||||
|
Reference in New Issue
Block a user