diff options
author | larrybr <larrybr@noemail.net> | 2024-02-10 03:11:42 +0000 |
---|---|---|
committer | larrybr <larrybr@noemail.net> | 2024-02-10 03:11:42 +0000 |
commit | 589c407f1257d8fa4a13da753b15d72eb282cbcf (patch) | |
tree | d4a3d057ec98bf7b5ef727eda7ab2b2ef5f5e8c3 /src | |
parent | 25e172d429e2f549b148024ef75470db871b93e3 (diff) | |
download | sqlite-589c407f1257d8fa4a13da753b15d72eb282cbcf.tar.gz sqlite-589c407f1257d8fa4a13da753b15d72eb282cbcf.zip |
Further clarify sqlite3_exec() callback parameter lifetime.
FossilOrigin-Name: 993a1a843177b19a9cb5598f57d1e05c01e1695f164faaa9ae22810ad4533eba
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index ddd8fc693..f21cffd51 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -421,7 +421,7 @@ typedef int (*sqlite3_callback)(void*,int,char**, char**); ** <li> The application must not modify the SQL statement text passed into ** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running. ** <li> The application must not dereference the arrays or string pointers -** passed as the 3rd and 4th parameters after the callback returns. +** passed as the 3rd and 4th callback parameters after it returns. ** </ul> */ int sqlite3_exec( |