vcl/source/edit/vclmedit.cxx | 3 +++ 1 file changed, 3 insertions(+) New commits: commit 156f14c6632df104186feeba250abdf7de4a2e30 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Tue Mar 10 14:18:52 2020 +0000 Commit: Xisco Faulí <xiscofa...@libreoffice.org> CommitDate: Wed Mar 11 15:12:05 2020 +0100
Resolves: tdf#131248 a11y crash when closing SQL Edit Query Change-Id: I39db7b352dd460f46092a054bfa89f5acdda54c1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90273 Tested-by: Jenkins Reviewed-by: Xisco Faulí <xiscofa...@libreoffice.org> diff --git a/vcl/source/edit/vclmedit.cxx b/vcl/source/edit/vclmedit.cxx index e21d5c4c8f57..49b63e9ae3e9 100644 --- a/vcl/source/edit/vclmedit.cxx +++ b/vcl/source/edit/vclmedit.cxx @@ -1087,6 +1087,9 @@ void VclMultiLineEdit::SetReadOnly( bool bReadOnly ) bool VclMultiLineEdit::IsReadOnly() const { + if (!pImpVclMEdit) // might be called from within the dtor, when pImpVclMEdit == NULL is a valid state + return true; + return pImpVclMEdit->IsReadOnly(); } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits