]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Further clarify sqlite3_exec() callback parameter lifetime.
authorlarrybr <larrybr@noemail.net>
Sat, 10 Feb 2024 03:11:42 +0000 (03:11 +0000)
committerlarrybr <larrybr@noemail.net>
Sat, 10 Feb 2024 03:11:42 +0000 (03:11 +0000)
FossilOrigin-Name: 993a1a843177b19a9cb5598f57d1e05c01e1695f164faaa9ae22810ad4533eba

manifest
manifest.uuid
src/sqlite.h.in

index 9aa176bf1ff699824741c9be90618eb73624e753..7fa4237cf2208230b205bad82510e04c82ea75b0 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Mention\slimited\slifetime\sof\sstring\sarrays\spassed\sto\ssqlite3_exec()\scallback.
-D 2024-02-08T01:19:46.361
+C Further\sclarify\ssqlite3_exec()\scallback\sparameter\slifetime.
+D 2024-02-10T03:11:42.492
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -741,7 +741,7 @@ F src/resolve.c 0ed10ebb70d15dcf3f1882051931ccfaf9c3f4debe67dbd114047d9e2adb9523
 F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97
 F src/select.c f1a81ff4f8e9e76c224e2ab3a4baa799add0db22158c7fcede65d8cc4a6fa2da
 F src/shell.c.in c6cb773b7703d76677529de19d1c40584520701966422c33da3e9334498a7099
-F src/sqlite.h.in ebb9636c0e99d692bdc22e70df3766dc615120aeddde81214547f51998bbd21d
+F src/sqlite.h.in 020d7b7307dda51420dc48b47e5334eaface77baba6bd9818375d392eb3ab5b5
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
 F src/sqlite3ext.h 3f046c04ea3595d6bfda99b781926b17e672fd6d27da2ba6d8d8fc39981dcb54
 F src/sqliteInt.h 5013ac1f5642df4c0b76314f507f4c7b6f8efee0e1d7c2e93bf8b445ceea29bb
@@ -2162,8 +2162,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 7070924eebce1d089fde911dc0427ab8f3764d57ace24caff2b79954b42d1b51
-R 2754c4cd5c9c2d2fe3f97bd6f57b4998
+P 717f67f3189a59842f5c17a25e8db0e24ec4405886fc22ab6eeb3954fba5a964
+R 64f77dbf6c9a67d1a6681b063264b76b
 U larrybr
-Z bdbab30aa887dd5009861f5b93382dca
+Z 925b1d0fbc30e91dd097edf85eb7f5c3
 # Remove this line to create a well-formed Fossil manifest.
index da391229d205b05643c83fd7c3cdb17de6e1ee86..153c9978093ea6bce91c0f226fc09a1c93f850ba 100644 (file)
@@ -1 +1 @@
-717f67f3189a59842f5c17a25e8db0e24ec4405886fc22ab6eeb3954fba5a964
\ No newline at end of file
+993a1a843177b19a9cb5598f57d1e05c01e1695f164faaa9ae22810ad4533eba
\ No newline at end of file
index ddd8fc6939f1d6067f23589941dd1829f8fd2bad..f21cffd51a7a353d4e90d267f8ab2e695cc736d7 100644 (file)
@@ -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(