sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 72f4f0e9e7db6798ff002632d5bc19b72a671306
Author: Caolán McNamara <caol...@redhat.com>
Date:   Wed Aug 27 15:43:35 2014 +0100

    Resolves: fdo#83137 NULL pAction
    
    Change-Id: I74c4e32aae1e3aa74d197f132c900627062b6d01

diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 
b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
index e3a779e..129f2b9 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();
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to