diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-27 15:43:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-27 15:43:58 +0100 |
commit | 72f4f0e9e7db6798ff002632d5bc19b72a671306 (patch) | |
tree | 04216457cb8484e5149348947554304e054aa6a0 /sdext/source/pdfimport/xpdfwrapper | |
parent | 8760b2b05c23e5fdf8ad7ad3f447a7489c2ddeac (diff) |
Resolves: fdo#83137 NULL pAction
Change-Id: I74c4e32aae1e3aa74d197f132c900627062b6d01
Diffstat (limited to 'sdext/source/pdfimport/xpdfwrapper')
-rw-r--r-- | sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx index e3a779eab957..129f2b9fe871 100644 --- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx +++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx @@ -572,7 +572,7 @@ void PDFOutDev::processLink(Link* link, Catalog*) link->getRect( &x1, &y1, &x2, &y2 ); LinkAction* pAction = link->getAction(); - if( pAction->getKind() == actionURI ) + if (pAction && pAction->getKind() == actionURI) { const char* pURI = static_cast<LinkURI*>(pAction)->getURI()->getCString(); |