Merge change 1690 into donut

* changes:
  Rework some code so that it works the way it was supposed to work.
This commit is contained in:
Android (Google) Code Review
2009-05-14 15:32:42 -07:00

View File

@@ -236,15 +236,17 @@ class CertificateValidatorCache {
}
}
int hashLength = secureHash.length;
if (secureHash != null && 0 < hashLength) {
if (hashLength == mHash.length) {
for (int i = 0; i < hashLength; ++i) {
if (secureHash[i] != mHash[i]) {
return false;
if (secureHash != null) {
int hashLength = secureHash.length;
if (0 < hashLength) {
if (hashLength == mHash.length) {
for (int i = 0; i < hashLength; ++i) {
if (secureHash[i] != mHash[i]) {
return false;
}
}
return true;
}
return true;
}
}