Bug 1092333 - nsDOMStringMap::NamedDeleter doesn't always write its out-parameter. r=bzbarsky.

This commit is contained in:
Julian Seward
2014-11-04 10:11:08 +01:00
parent 5c0934cc0a
commit 708b18cdeb

View File

@@ -126,11 +126,13 @@ nsDOMStringMap::NamedDeleter(const nsAString& aProp, bool& found)
{
// Currently removing property, attribute is already removed.
if (mRemovingProp) {
found = false;
return;
}
nsAutoString attr;
if (!DataPropToAttr(aProp, attr)) {
found = false;
return;
}