From a0ed55c37314448eaa19c4c11198e32ddb899bbc Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 21 Jan 2005 09:24:03 +0000 Subject: Check the links info is initialized before using it. Should fix a crash on 2005-01-21 Marco Pesenti Gritti * pdf/xpdf/pdf-document.cc: Check the links info is initialized before using it. Should fix a crash on startup. --- (limited to 'pdf') diff --git a/pdf/xpdf/pdf-document.cc b/pdf/xpdf/pdf-document.cc index b9180bd..96b1132 100644 --- a/pdf/xpdf/pdf-document.cc +++ b/pdf/xpdf/pdf-document.cc @@ -1041,6 +1041,10 @@ pdf_document_get_link (EvDocument *document, int x, int y) LinkAction *action; double link_x, link_y; + if (pdf_document->links == NULL) { + return NULL; + } + /* Zoom */ link_x = x / pdf_document->scale; link_y = y / pdf_document->scale; -- cgit v0.9.1