зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1648372: add missing `nullptr` check to `TextInputSelectionController::SetCaretReadOnly`. r=masayuki
Differential Revision: https://phabricator.services.mozilla.com/D82165
This commit is contained in:
Родитель
30f78a7f6e
Коммит
656d342baf
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче