зеркало из https://github.com/mozilla/pjs.git
Bug 559618. Treat negative max-age values as 0. r=jduell
This commit is contained in:
Родитель
ebcccbb958
Коммит
c12f62748a
|
@ -534,7 +534,10 @@ nsHttpResponseHead::GetMaxAgeValue(PRUint32 *result)
|
|||
if (!p)
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
|
||||
*result = (PRUint32) atoi(p + 8);
|
||||
int maxAgeValue = atoi(p + 8);
|
||||
if (maxAgeValue < 0)
|
||||
maxAgeValue = 0;
|
||||
*result = PRUint32(maxAgeValue);
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче