Bug 1648372: add missing `nullptr` check to `TextInputSelectionController::SetCaretReadOnly`. r=masayuki

Differential Revision: https://phabricator.services.mozilla.com/D82165
This commit is contained in:
Mirko Brodesser 2020-07-03 12:03:21 +00:00
Родитель 30f78a7f6e
Коммит 656d342baf
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -517,6 +517,11 @@ TextInputSelectionController::SetCaretReadOnly(bool aReadOnly) {
if (!caret) {
return NS_ERROR_FAILURE;
}
if (!mFrameSelection) {
return NS_ERROR_FAILURE;
}
Selection* selection = mFrameSelection->GetSelection(SelectionType::eNormal);
if (selection) {
caret->SetCaretReadOnly(aReadOnly);