]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix typo in comment.
authordrh <>
Mon, 7 Nov 2022 15:01:05 +0000 (15:01 +0000)
committerdrh <>
Mon, 7 Nov 2022 15:01:05 +0000 (15:01 +0000)
FossilOrigin-Name: c3b94d7d4697a5c3983253f6266c544d8037617778a09d491bc12eb13f08ac75

manifest
manifest.uuid
src/os_win.c

index fe11c126016a89e804ffd204a7e6727a8f0ef31e..7d5d1ad65e4fb83bed2494a2873c0805cc2911c7 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\ssqlite3.wasm.alloc.impl()\sas\sa\s"public\sback\sdoor"\sinto\sthe\slow-level\snon-throwing\sallocator.\sCorrect\ssqlite3.WasmAllocError\sconstructor\sto\sbehave\slike\sits\susages\sexpect\sit\sto\sand\sadd\stests\sfor\sthat.
-D 2022-11-07T13:06:20.227
+C Fix\stypo\sin\scomment.
+D 2022-11-07T15:01:05.980
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -621,7 +621,7 @@ F src/os_common.h b2f4707a603e36811d9b1a13278bffd757857b85
 F src/os_kv.c 0e59600d25b72034c7666b8b7dcc527f039b5d9c16f24a7eca4c08c66f63c364
 F src/os_setup.h 6011ad7af5db4e05155f385eb3a9b4470688de6f65d6166b8956e58a3d872107
 F src/os_unix.c 287aa5f5691a2b356780c63e83abaa33549add84227b8313395f04088486d79c
-F src/os_win.c 8d129ae3e59e0fa900e20d0ad789e96f2e08177f0b00b53cdda65c40331e0902
+F src/os_win.c 295fe45f18bd86f2477f4cd79f3377c6f883ceb941b1f46808665c73747f2345
 F src/os_win.h 7b073010f1451abe501be30d12f6bc599824944a
 F src/pager.c 6176d9752eb580419e8fef4592dc417a6b00ddfd43ee22f818819bf8840ceee8
 F src/pager.h f82e9844166e1585f5786837ddc7709966138ced17f568c16af7ccf946c2baa3
@@ -2054,8 +2054,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 10d6189d23133006b39ea230045a918483721dd48f5558f77e57e23693097d16
-R dbbc6e5147410c1ff1f5e52d341a107c
-U stephan
-Z 38b0ee956ab9968f2c2619fa1c2e4c41
+P cea8bf9a144d842c4755c3130273524926e8c4831d7f21c4e34d4e8c74109c8c
+R 832a383168fc2e8a0fdf3800c81c0506
+U drh
+Z 4c23a15de02032ecc5a56e47dc98929f
 # Remove this line to create a well-formed Fossil manifest.
index 7d3ca44fbd0c11b7c4d671fa80f04d5bbc4429ca..fb284922df158f739d71358ce3ebef2821de0c41 100644 (file)
@@ -1 +1 @@
-cea8bf9a144d842c4755c3130273524926e8c4831d7f21c4e34d4e8c74109c8c
\ No newline at end of file
+c3b94d7d4697a5c3983253f6266c544d8037617778a09d491bc12eb13f08ac75
\ No newline at end of file
index d71fb39220c5862ba25d4ec49b5816b6a7b897a8..abecf1b93667f33c9bb8fc9a088f98106c0808fa 100644 (file)
@@ -4725,9 +4725,10 @@ static int winMakeEndInDirSep(int nBuf, char *zBuf){
 }
 
 /*
-** If sqlite3_temp_directory is not, take the mutex and return true.
+** If sqlite3_temp_directory is defined, take the mutex and return true.
 **
-** If sqlite3_temp_directory is NULL, omit the mutex and return false.
+** If sqlite3_temp_directory is NULL (undefined), omit the mutex and
+** return false.
 */
 static int winTempDirDefined(void){
   sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_TEMPDIR));