2005-01-21 Marco Pesenti Gritti <marco@gnome.org>
* pdf/xpdf/pdf-document.cc:
Check the links info is initialized before
using it. Should fix a crash on startup.
+2005-01-21 Marco Pesenti Gritti <marco@gnome.org>
+
+ * pdf/xpdf/pdf-document.cc:
+
+ Check the links info is initialized before
+ using it. Should fix a crash on startup.
+
2005-01-21 Martin Kretzschmar <martink@gnome.org>
* pixbuf/pixbuf-document.c
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;