зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1081992 Needs null check at notifying TextComposition of composition event being discarded r=smaug
This commit is contained in:
Родитель
9fe74dfec0
Коммит
ec55989494
|
@ -979,6 +979,16 @@ IMEStateManager::OnCompositionEventDiscarded(
|
|||
|
||||
nsRefPtr<TextComposition> composition =
|
||||
sTextCompositions->GetCompositionFor(aCompositionEvent->widget);
|
||||
if (!composition) {
|
||||
// If the PresShell has been being destroyed during composition,
|
||||
// a TextComposition instance for the composition was already removed from
|
||||
// the array and destroyed in OnDestroyPresContext(). Therefore, we may
|
||||
// fail to retrieve a TextComposition instance here.
|
||||
PR_LOG(sISMLog, PR_LOG_ALWAYS,
|
||||
("ISM: IMEStateManager::OnCompositionEventDiscarded(), "
|
||||
"TextComposition instance for the widget has already gone"));
|
||||
return;
|
||||
}
|
||||
composition->OnCompositionEventDiscarded(aCompositionEvent);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче