• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

system/core


コミットメタ情報

リビジョンe126026c02919b9c45e2559431fe67ea8dc6457e (tree)
日時2019-06-21 07:31:15
作者Android Build Merger (Role) <noreply-android-build-merger@goog...>
コミッターAndroid Build Merger (Role)

ログメッセージ

[automerger] Fix a memory leak in gatekeeper. am: 6a9c4e7968 am: bdc924f31d am: 7535975701

Change-Id: I25e3d526bb3f09c826d204909ea1763af4eb951d

変更サマリ

差分

--- a/gatekeeperd/SoftGateKeeper.h
+++ b/gatekeeperd/SoftGateKeeper.h
@@ -58,23 +58,16 @@ public:
5858 virtual ~SoftGateKeeper() {
5959 }
6060
61- virtual bool GetAuthTokenKey(const uint8_t **auth_token_key,
62- uint32_t *length) const {
61+ virtual bool GetAuthTokenKey(const uint8_t** auth_token_key, uint32_t* length) const {
6362 if (auth_token_key == NULL || length == NULL) return false;
64- uint8_t *auth_token_key_copy = new uint8_t[SIGNATURE_LENGTH_BYTES];
65- memcpy(auth_token_key_copy, key_.get(), SIGNATURE_LENGTH_BYTES);
66-
67- *auth_token_key = auth_token_key_copy;
63+ *auth_token_key = key_.get();
6864 *length = SIGNATURE_LENGTH_BYTES;
6965 return true;
7066 }
7167
72- virtual void GetPasswordKey(const uint8_t **password_key, uint32_t *length) {
68+ virtual void GetPasswordKey(const uint8_t** password_key, uint32_t* length) {
7369 if (password_key == NULL || length == NULL) return;
74- uint8_t *password_key_copy = new uint8_t[SIGNATURE_LENGTH_BYTES];
75- memcpy(password_key_copy, key_.get(), SIGNATURE_LENGTH_BYTES);
76-
77- *password_key = password_key_copy;
70+ *password_key = key_.get();
7871 *length = SIGNATURE_LENGTH_BYTES;
7972 }
8073