diff options
author | Hui Yu <huiyu@google.com> | 2018-12-27 15:40:29 -0800 |
---|---|---|
committer | Hui Yu <huiyu@google.com> | 2019-01-07 18:17:53 +0000 |
commit | 7fbf27c91af1621264154cc09f0fdafb3ba69ed3 (patch) | |
tree | 1424871fa03e9ab89a50376c2399bebe725c3028 /dist/sqlite3.h | |
parent | 7cb2759e23ee511ba234b705c3672073d1ae983e (diff) |
RESTRICT AUTOMERGE: Apply security patch to sqlite 3.22.
This patch fixes Magellan SQLite Security Vulnerability as in
b/121156452
Download from https://www.sqlite.org/src/info/c255889bd95bd543
Get the Tarball or ZIP Archive, unzip it on linux machine then run:
mkdir bld; cd bld; ../configure; make sqlite3.c
Copy sqlite3.c, sqlite3.h, sqlite3ext.h, shell.c from bld directory
to dist/orig.
dist contains a copy of dist/orig, but with the Android.patch
file applied.
Bug: 121156452
Test: select sqlite_version() - returns 3.22.0
Test: atest cts/SQLiteDatabaseTest all passed.
Test: atest cts/SQLSecurityTest
Change-Id: Iea1cefe2577ac52da84b24b6d51e1769042e449a
Merged-In: Iad8c3d1d74d8591a75a4c033c8bf9d3956d2fe4f
Diffstat (limited to 'dist/sqlite3.h')
-rw-r--r-- | dist/sqlite3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/sqlite3.h b/dist/sqlite3.h index d8138b7..57669e1 100644 --- a/dist/sqlite3.h +++ b/dist/sqlite3.h @@ -125,7 +125,7 @@ extern "C" { */ #define SQLITE_VERSION "3.22.0" #define SQLITE_VERSION_NUMBER 3022000 -#define SQLITE_SOURCE_ID "2018-01-22 18:45:57 0c55d179733b46d8d0ba4d88e01a25e10677046ee3da1d5b1581e86726f2171d" +#define SQLITE_SOURCE_ID "2018-12-19 01:30:22 c255889bd95bd5430dc7ced3317011ae2abb483d6c9af883af3dc7d6c2c2f234" /* ** CAPI3REF: Run-Time Library Version Numbers |