Bug 730318 - Forgot to add braces to if condition. r=khuey

This commit is contained in:
Jared Wein 2012-03-22 14:03:04 -07:00
parent daa9bc177b
commit 8810c145ca

View File

@ -563,8 +563,9 @@ nsObjectLoadingContent::BindToTree(nsIDocument* aDocument, nsIContent* /*aParent
nsIContent* /*aBindingParent*/,
bool /*aCompileEventHandlers*/)
{
if (aDocument)
if (aDocument) {
return aDocument->AddPlugin(this);
}
return NS_OK;
}