Kaydet (Commit) 72f4f0e9 authored tarafından Caolán McNamara's avatar Caolán McNamara

Resolves: fdo#83137 NULL pAction

Change-Id: I74c4e32aae1e3aa74d197f132c900627062b6d01
üst 8760b2b0
......@@ -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();
......
Markdown is supported
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