1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix a buffer overread in the sessions extension that could occur when processing a corrupt changeset.

FossilOrigin-Name: 0e4e7a05c4204b47a324d67e18e76d2a98e26b2723d19d5c655ec9fd2e41f4b7
This commit is contained in:
dan
2023-09-07 13:53:09 +00:00
parent 0a4c31d87b
commit 09f1652f36
4 changed files with 24 additions and 17 deletions

View File

@ -98,7 +98,10 @@ namespace eval trd {
set build(All-O0) {
-O0 --enable-all
}
set build(All-Sanitize) { --enable-all -fsanitize=address,undefined }
set build(All-Sanitize) {
-DSQLITE_OMIT_LOOKASIDE=1
--enable-all -fsanitize=address,undefined
}
set build(Sanitize) {
CC=clang -fsanitize=address,undefined