]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Omit the unnecessary highlighting of the security implications of
authordrh <>
Mon, 7 Jun 2021 00:41:18 +0000 (00:41 +0000)
committerdrh <>
Mon, 7 Jun 2021 00:41:18 +0000 (00:41 +0000)
SQLTIE_DIRECTONLY in the sqlite3_create_function() documentation.
No changes to code.

FossilOrigin-Name: 2aa9368b63b42ac7c700516f109edcc6098c12b850eae591afed4e51a3f41819

manifest
manifest.uuid
src/sqlite.h.in

index c92b6e722cde6401ce698a8c6960666d68debc49..85a6295d1a5b7fb15f43fa4a39dbbd36bde4606d 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C A\sbetter\sfix\sfor\sthe\sproblem\saddressed\sby\s[4eb80b0cc61526c1].\s\sThis\sfix\nalso\savoids\sreading\suninitialized\svariables.
-D 2021-06-04T23:26:56.428
+C Omit\sthe\sunnecessary\shighlighting\sof\sthe\ssecurity\simplications\sof\nSQLTIE_DIRECTONLY\sin\sthe\ssqlite3_create_function()\sdocumentation.\nNo\schanges\sto\scode.
+D 2021-06-07T00:41:18.036
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -546,7 +546,7 @@ F src/resolve.c 35630effd4d16d2373caa41bae40a3d71f853f3ad0cb4f572f2ed4b8c350c1e9
 F src/rowset.c ba9515a922af32abe1f7d39406b9d35730ed65efab9443dc5702693b60854c92
 F src/select.c 2f4429e0b0ca031e360489c45dca5dfa06cd85480e12c0d1360b91e1c8e7f7a2
 F src/shell.c.in a4bc0e2ba9be798e293790f354dcc0099c6370127eec18cf49cb161b9dae2fbc
-F src/sqlite.h.in 7f184776cfd85900905420ea3c62e44929ba348ddc015bc5933835ee0529188e
+F src/sqlite.h.in f450394634eac00bc680c0e91582b818359c6ad61149f49f90fb6ecbd526b51f
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
 F src/sqlite3ext.h 61b38c073d5e1e96a3d45271b257aef27d0d13da2bea5347692ae579475cd95e
 F src/sqliteInt.h 61f717ac4242af975c6d8abc11a3ada6153ad5bfb7ce08ef8a443c01e13c8031
@@ -1918,7 +1918,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P b53ca8ed8336d9e442a920e1c05a17a38dadc2fd1e0cb73e68d380ef34c87af8
-R 6bb182b746985a1fbabd260a9d2b7d10
+P 1c71de43dbc68002c4a6229e7efffb019655baff67a51fe922571fe420c95835
+R c87395dcc8dfb3b7eafc4dc4fcea51a7
 U drh
-Z c646eee165dcb65ccd442f03bdd6fcbf
+Z b0e78988bd880158640c51396f39391b
index 5c40fafa394059497df7f23d9d3444f38f4c882a..d29b2a003bc4f81f2fe9bcfae6383a80ddc461a3 100644 (file)
@@ -1 +1 @@
-1c71de43dbc68002c4a6229e7efffb019655baff67a51fe922571fe420c95835
\ No newline at end of file
+2aa9368b63b42ac7c700516f109edcc6098c12b850eae591afed4e51a3f41819
\ No newline at end of file
index 92ea416111f152118a7c8ed26dcd2c7ea06311dc..065438b1b8dd5c00465cbcbf8c9dcc1fb2c67fbf 100644 (file)
@@ -5133,7 +5133,6 @@ int sqlite3_reset(sqlite3_stmt *pStmt);
 ** within VIEWs, TRIGGERs, CHECK constraints, generated column expressions,
 ** index expressions, or the WHERE clause of partial indexes.
 **
-** <span style="background-color:#ffff90;">
 ** For best security, the [SQLITE_DIRECTONLY] flag is recommended for
 ** all application-defined SQL functions that do not need to be
 ** used inside of triggers, view, CHECK constraints, or other elements of
@@ -5143,7 +5142,6 @@ int sqlite3_reset(sqlite3_stmt *pStmt);
 ** a database file to include invocations of the function with parameters
 ** chosen by the attacker, which the application will then execute when
 ** the database file is opened and read.
-** </span>
 **
 ** ^(The fifth parameter is an arbitrary pointer.  The implementation of the
 ** function can gain access to this pointer using [sqlite3_user_data()].)^