Bug 1081992 Needs null check at notifying TextComposition of composition event being discarded r=smaug

This commit is contained in:
Masayuki Nakano 2014-10-15 00:40:06 +09:00
Родитель 9fe74dfec0
Коммит ec55989494
1 изменённых файлов: 10 добавлений и 0 удалений

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

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