Bug 564607 - Plugins which implement NPClass.enumerate crash Firefox when run OOP: fix the precedence of C++ operations, r=bent

This commit is contained in:
Benjamin Smedberg 2010-05-10 17:11:08 -04:00
Родитель 2249d7ec3a
Коммит d5b8a23321
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -465,7 +465,7 @@ PluginScriptableObjectParent::ScriptableEnumerate(NPObject* aObject,
for (PRUint32 index = 0; index < *aCount; index++) {
PluginIdentifierParent* id =
static_cast<PluginIdentifierParent*>(identifiers[index]);
*aIdentifiers[index] = id->ToNPIdentifier();
(*aIdentifiers)[index] = id->ToNPIdentifier();
}
return true;
}