Fix problem reported on the mailing list.

Somehow this got lost. Fix found by Jürgen.
This commit is contained in:
Richard Kimberly Heck 2018-12-30 14:02:34 -05:00
parent a4fb675279
commit 4404f0bab2

View File

@ -2457,6 +2457,11 @@ void Buffer::checkIfBibInfoCacheIsValid() const
return;
}
// if we already know the cache is invalid, no need to check
// the timestamps
if (!d->bibinfo_cache_valid_)
return;
// we'll assume it's ok and change this if it's not
d->bibinfo_cache_valid_ = true;
d->cite_labels_valid_ = true;