Add comment to fix coverity #111935.

This commit is contained in:
Richard Heck 2016-06-12 00:31:33 -04:00
parent a48adfa6d6
commit 4152c68c66

View File

@ -1060,6 +1060,11 @@ void BiblioInfo::makeCitationLabels(Buffer const & buf)
docstring const num = convert<docstring>(++keynumber);
entry.setCiteNumber(num);
} else {
// coverity complains about our derefercing the iterator last,
// which was not initialized above. but it does get initialized
// after the first time through the loop, which is the point of
// the first test.
// coverity[FORWARD_NULL]
if (it != cited_entries_.begin()
&& entry.getAbbreviatedAuthor() == last->second.getAbbreviatedAuthor()
// we access the year via getYear() so as to get it from the xref,