forked from Mirrors/privacore-open-source-search-engine
do not try to print links if null in XmlDoc::printDoc
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user