• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

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

packages/apps/Settings


Commit MetaInfo

Revision528c64e205bf1d8f8237fb4e582d152958345b92 (tree)
Time2015-02-02 20:22:02
AuthorRobin Lee <rgl@goog...>
CommiterAndroid (Google) Code Review

Log Message

Merge "Repair broken keychain wifi_uid logic" into lmp-mr1-dev

Change Summary

Incremental Difference

--- a/src/com/android/settings/CredentialStorage.java
+++ b/src/com/android/settings/CredentialStorage.java
@@ -223,9 +223,9 @@ public final class CredentialStorage extends Activity {
223223 Bundle bundle = mInstallBundle;
224224 mInstallBundle = null;
225225
226- final int uid = bundle.getInt(Credentials.EXTRA_INSTALL_AS_UID, -1);
226+ final int uid = bundle.getInt(Credentials.EXTRA_INSTALL_AS_UID, KeyStore.UID_SELF);
227227
228- if (!UserHandle.isSameUser(uid, Process.myUid())) {
228+ if (uid != KeyStore.UID_SELF && !UserHandle.isSameUser(uid, Process.myUid())) {
229229 int dstUserId = UserHandle.getUserId(uid);
230230 int myUserId = UserHandle.myUserId();
231231