bug 341008 Fix sscanf error checking
r=mvl sr=darin a=darin
This commit is contained in:
Родитель
c061e0dd91
Коммит
cc4e92df8e
|
@ -700,7 +700,7 @@ nsPermissionManager::Read()
|
|||
}
|
||||
|
||||
PRUint32 type;
|
||||
if (!PR_sscanf(buffer.get() + 1, "%u", &type) || type >= NUMBER_OF_TYPES) {
|
||||
if (PR_sscanf(buffer.get() + 1, "%u", &type) != 1 || type >= NUMBER_OF_TYPES) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче