Bug 721129 - Incorrect BigInteger comparison in JPakeCrypto. r=dchan

This commit is contained in:
Richard Newman 2012-01-25 17:20:00 -08:00
Родитель 69a6774d4f
Коммит e5fb0cf2fd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -138,7 +138,7 @@ public class JPakeCrypto {
Log.d(LOG_TAG, "round2 started.");
if (jp.gx4 == BigInteger.ONE) {
if (BigInteger.ONE.compareTo(jp.gx4) == 0) {
throw new Gx4IsOneException();
}