зеркало из https://github.com/mozilla/gecko-dev.git
Bug 576447: ^ means bitwise-xor, nothing else. r=dbaron
This commit is contained in:
Родитель
55bd6abd94
Коммит
da0e88e971
|
@ -324,7 +324,7 @@ nsHTMLFrameSetElement::ParseRowCol(const nsAString & aValue,
|
|||
|
||||
#define MAX_FRAMESET_SPEC_COUNT 100000
|
||||
// Count the commas. Don't count more than X commas (bug 576447).
|
||||
PR_STATIC_ASSERT(MAX_FRAMESET_SPEC_COUNT * sizeof(nsFramesetSpec) < 2^30);
|
||||
PR_STATIC_ASSERT(MAX_FRAMESET_SPEC_COUNT * sizeof(nsFramesetSpec) < (1 << 30));
|
||||
PRInt32 commaX = spec.FindChar(sComma);
|
||||
PRInt32 count = 1;
|
||||
while (commaX != kNotFound && count < MAX_FRAMESET_SPEC_COUNT) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче