зеркало из https://github.com/mozilla/pjs.git
Bug 371238 Fix uninitialized variable in nsPresContext::GetContainer. r+sr=roc
This commit is contained in:
Родитель
7bc6d458ef
Коммит
a30e6c49b5
|
@ -1114,11 +1114,9 @@ nsPresContext::SetContainer(nsISupports* aHandler)
|
|||
already_AddRefed<nsISupports>
|
||||
nsPresContext::GetContainerInternal()
|
||||
{
|
||||
nsISupports *result;
|
||||
nsISupports *result = nsnull;
|
||||
if (mContainer)
|
||||
CallQueryReferent(mContainer.get(), &result);
|
||||
else
|
||||
result = nsnull;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче