Added a NULL check to the log manager.

This commit is contained in:
Markus Makela
2015-08-26 16:32:17 +03:00
parent 2f9ae48f6a
commit d9bd22ce90

View File

@ -2981,7 +2981,7 @@ static void* thr_filewriter_fun(
!= 0);
node = node->mlnode_next;
vn2 = bb_list->mlist_versno;
} while (vn1 != vn2);
} while (vn1 != vn2 && node);
} /* while (node != NULL) */