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
Родитель daa9bc177b
Коммит 8810c145ca
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -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;
}