Commit 34f52195 authored by Shawn Rutledge's avatar Shawn Rutledge
Browse files

Guard against crash in QQuickPdfSearchModel::setDocument()


If the document is null, ignore it.

Change-Id: I3cebd049fb5d16d0064dddf00183f231019ef03c
Reviewed-by: default avatarShawn Rutledge <shawn.rutledge@qt.io>
Showing with 1 addition and 1 deletion
......@@ -67,7 +67,7 @@ QQuickPdfDocument *QQuickPdfSearchModel::document() const
void QQuickPdfSearchModel::setDocument(QQuickPdfDocument *document)
{
if (document == m_quickDocument)
if (document == m_quickDocument || !document)
return;
m_quickDocument = document;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment