]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Mention that sqlite3_mutex_free() accepts NULL as a no-op.
authorlarrybr <larrybr@noemail.net>
Sat, 13 May 2023 15:34:15 +0000 (15:34 +0000)
committerlarrybr <larrybr@noemail.net>
Sat, 13 May 2023 15:34:15 +0000 (15:34 +0000)
FossilOrigin-Name: 603d9ad5012ca8996783996d7b8cd6a1aabf12b21604a2ccc137f4c2d99427b9

manifest
manifest.uuid
src/sqlite.h.in

index 2be187c54c5707e6b26a152032581cdd17886144..a3ebde84d19e00812ab2ae225fea9b97e5feba96 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\scompilation\sissue\sseen\swith\sMSVC.
-D 2023-05-13T05:13:29.183
+C Mention\sthat\ssqlite3_mutex_free()\saccepts\sNULL\sas\sa\sno-op.
+D 2023-05-13T15:34:15.805
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -637,7 +637,7 @@ F src/resolve.c 3e53e02ce87c9582bd7e7d22f13f4094a271678d9dc72820fa257a2abb5e4032
 F src/rowset.c ba9515a922af32abe1f7d39406b9d35730ed65efab9443dc5702693b60854c92
 F src/select.c 12aa3168be4ff175702fe0ebeaf544312be22d275d378a28e7b2fad32d552d36
 F src/shell.c.in 1e18312f58d365042036fc9d19dcef416074f783702b168f07814332c2268ee0
-F src/sqlite.h.in 27ca1d4b2eda8feee468af5735182390e8fe4696522751eec0136d17323201ad
+F src/sqlite.h.in c14a4471fcd897a03631ac7ad3d05505e895e7b6419ec5b96cae9bc4df7a9fc6
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
 F src/sqlite3ext.h da473ce2b3d0ae407a6300c4a164589b9a6bfdbec9462688a8593ff16f3bb6e4
 F src/sqliteInt.h 6e08039aa944e874d3878c4f12bbd78cea797c988dad147adc9ffb1c2b179402
@@ -2069,8 +2069,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 f06c16a8b0e7a15ce4f7d99af3376a1bf1bfbfc0fdc048b079418ae74c619d6b
-R 68bf0e0720f39d0e6119c2e069e78207
-U mistachkin
-Z 12f9058013daf2741959b0b8eb6c3d0b
+P 67001887044da71ab50c07d8345bd950a0a1f9688cf9cd6966312ea163cf6e17
+R f137c75703c92c2af2a3b7644ec04694
+U larrybr
+Z a68f3963d62b5a0e832809880b122d2b
 # Remove this line to create a well-formed Fossil manifest.
index f2491482d2cb6f9b38a1327cb9ac1f0027af2255..08988c19c46f6da95f6aaf0d251bbc7bc69931cb 100644 (file)
@@ -1 +1 @@
-67001887044da71ab50c07d8345bd950a0a1f9688cf9cd6966312ea163cf6e17
\ No newline at end of file
+603d9ad5012ca8996783996d7b8cd6a1aabf12b21604a2ccc137f4c2d99427b9
\ No newline at end of file
index ba7ad9c537110cedc3f2ef6f899fc88435d75538..b78adc2a3efcf6bac90e3d40d77241b1a2daa78c 100644 (file)
@@ -7881,7 +7881,7 @@ int sqlite3_vfs_unregister(sqlite3_vfs*);
 ** ^(Some systems (for example, Windows 95) do not support the operation
 ** implemented by sqlite3_mutex_try().  On those systems, sqlite3_mutex_try()
 ** will always return SQLITE_BUSY. The SQLite core only ever uses
-** sqlite3_mutex_try() as an optimization so this is acceptable 
+** sqlite3_mutex_try() as an optimization so this is acceptable
 ** behavior.)^
 **
 ** ^The sqlite3_mutex_leave() routine exits a mutex that was
@@ -7889,9 +7889,9 @@ int sqlite3_vfs_unregister(sqlite3_vfs*);
 ** is undefined if the mutex is not currently entered by the
 ** calling thread or is not currently allocated.
 **
-** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
-** sqlite3_mutex_leave() is a NULL pointer, then all three routines
-** behave as no-ops.
+** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(),
+** sqlite3_mutex_leave(), or sqlite3_mutex_free() is a NULL pointer,
+** then any of the four routines behaves as a no-op.
 **
 ** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()].
 */