Bug 822365: declare variables at the beginning of a block to fix MSVC

compilation errors. r=kaie.


git-svn-id: svn://10.0.0.236/trunk@264693 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%google.com
2013-02-05 23:44:03 +00:00
parent f7ff05a366
commit 3e09cf75c5

View File

@@ -212,6 +212,8 @@ static SECStatus mac(
unsigned char isBlockA = constantTimeEQ8(i, indexA);
unsigned char isBlockB = constantTimeEQ8(i, indexB);
for (j = 0; j < mdBlockSize; j++) {
unsigned char isPastC = isBlockA & constantTimeGE(j, c);
unsigned char isPastCPlus1 = isBlockA & constantTimeGE(j, c+1);
unsigned char b = 0;
if (k < headerLen) {
b = header[k];
@@ -220,8 +222,6 @@ static SECStatus mac(
}
k++;
unsigned char isPastC = isBlockA & constantTimeGE(j, c);
unsigned char isPastCPlus1 = isBlockA & constantTimeGE(j, c+1);
/* If this is the block containing the end of the
* application data, and we are at the offset for the
* 0x80 value, then overwrite b with 0x80. */