do not try to print links if null in XmlDoc::printDoc

This commit is contained in:
Brian Rasmusson
2016-09-30 15:56:32 +02:00
parent f10c112011
commit 6a63f02654

@ -18380,7 +18380,9 @@ bool XmlDoc::printDoc ( SafeBuf *sb ) {
sb->safePrintf ( "</table></center><br>\n" );
// print outlinks
links->print( sb );
if( links ) {
links->print( sb );
}
//
// PRINT SECTIONS