The unified diff between revisions [89c06fb2..] and [e72f4c79..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'annotate.cc'

#
#
# patch "annotate.cc"
#  from [583bfb6d988073642e901dfa36d85c7c44c4ca37]
#    to [613ae82123687d6e26b088c8f769d4efe9abd3fa]
#
============================================================
--- annotate.cc	583bfb6d988073642e901dfa36d85c7c44c4ca37
+++ annotate.cc	613ae82123687d6e26b088c8f769d4efe9abd3fa
@@ -390,7 +390,7 @@ annotate_lineage_mapping::build_parent_l

   // do the copied lines thing for our annotate_context
   std::vector<long> lcs_src_lines;
-  lcs_src_lines.reserve(lcs.size());
+  lcs_src_lines.resize(lcs.size());
   size_t i, j;
   i = j = 0;
   while (i < file_interned.size() && j < lcs.size()) {