commit | 319bb65ec442b56071eca14e31a86d25250724d7 | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Tue Dec 01 13:24:08 2020 -0800 |
committer | Joel Galenson <jgalenson@google.com> | Tue Dec 01 13:24:08 2020 -0800 |
tree | 1bb1f1792360275c11b60707ae5092d9de30bdb7 | |
parent | 8e019fa90d08c806111cbc1e54d0621a91d4f1f3 [diff] [blame] |
Treat the alias column as a BLOB. Fixes: 173546362 Test: atest keystore2_test Change-Id: Ie65cb2cfc223adefc48a98c9b601146915cf9e63
diff --git a/keystore2/src/database.rs b/keystore2/src/database.rs index 0ce4ad6..1f77cbe 100644 --- a/keystore2/src/database.rs +++ b/keystore2/src/database.rs
@@ -264,7 +264,7 @@ creation_date DATETIME, domain INTEGER, namespace INTEGER, - alias TEXT);", + alias BLOB);", NO_PARAMS, ) .context("Failed to initialize \"keyentry\" table.")?;