Bug 552951 followup - Avoid the use of goto; r=mayhemer

This commit is contained in:
Kai engert 2011-03-28 00:05:04 -04:00
Родитель 4854227de8
Коммит 0abdca9b13
1 изменённых файлов: 8 добавлений и 5 удалений

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

@ -565,18 +565,21 @@ nsKeygenFormProcessor::GetPublicKey(nsAString& aValue, nsAString& aChallenge,
if (strcmp(keyparamsString, "null") == 0)
goto loser;
str = keyparamsString;
PRBool found_match = PR_FALSE;
do {
end = strchr(str, ',');
if (end != nsnull)
*end = '\0';
primeBits = pqg_prime_bits(str);
if (keysize == primeBits)
goto found_match;
if (keysize == primeBits) {
found_match = PR_TRUE;
break;
}
str = end + 1;
} while (end != nsnull);
if (!found_match) {
goto loser;
found_match:
(void)0;
}
} else if (aKeyType.LowerCaseEqualsLiteral("ec")) {
keyparamsString = ToNewCString(aKeyParams);
if (!keyparamsString) {