зеркало из https://github.com/mozilla/gecko-dev.git
Bug 371238 Fix uninitialized variable in nsPresContext::GetContainer. r+sr=roc
This commit is contained in:
Родитель
b536605907
Коммит
1d2635a33a
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче