commit | 263de9f8d7d94679a5f0dd32b0654321262bf86f | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Thu Aug 11 15:00:51 2022 -0700 |
committer | Chris Wailes <chriswailes@google.com> | Fri Aug 12 10:36:10 2022 -0700 |
tree | 06960a0e631789b441403bb428507c8de31f3a2f | |
parent | a00741ceb6fff4ab670fa3942c030254efcf8769 [diff] [blame] |
Update source for Rust 1.63.0 Test: m rust Bug: 241303140 Change-Id: I3b4d8c1c3101941258e366279bfd2a4a3ab1b948
diff --git a/keystore2/src/crypto/lib.rs b/keystore2/src/crypto/lib.rs index e925180..7ba47c8 100644 --- a/keystore2/src/crypto/lib.rs +++ b/keystore2/src/crypto/lib.rs
@@ -190,7 +190,7 @@ fn get_key(&'a self) -> &'a [u8] { match self { Self::Ref(b) => b, - Self::Owned(z) => &*z, + Self::Owned(z) => z, } }