commit | f3880fdc678e4e2a26aefa46b38f45fb9625bd0d | [log] [tgz] |
---|---|---|
author | Haohua Li <lihaohua90@gmail.com> | Tue Mar 24 21:59:29 2020 +0800 |
committer | Haohua Li <lihaohua90@gmail.com> | Tue Mar 24 14:19:59 2020 +0000 |
tree | 5d077a66d2fbea8804c94167d994fadeec81182b | |
parent | 31145f453b9d6d010e97c059ddc9aea78f9e4ca4 [diff] |
Fix wrong variable in AccountManagerService's TokenCache // mAccountEvictors.put(k.account, tokenEvictor); // should be: mAccountEvictors.put(k.account, accountEvictor); This error in putToken() method causes the confusion of mAccountEvictors, and may causes the evict() method does not clean up the cache data correctly. Change-Id: I9435c206a6fa4d90177bbbe8816004365a213d1b Signed-off-by: Haohua Li <lihaohua90@gmail.com>