https://sourceware.org/bugzilla/show_bug.cgi?id=31009
--- Comment #4 from Jonny Weir <jonny.weir at clearpool dot io> --- I was able to add some logging to get the values out and it seems that things are overflowing at some point. Some example output: bfdtab->count + 1 = 1 | table->nbuckets = 5461 bfdtab->count + 1 = 2 | table->nbuckets = 5461 bfdtab->count + 1 = 3 | table->nbuckets = 5461 bfdtab->count + 1 = 4 | table->nbuckets = 5461 bfdtab->count + 1 = 5 | table->nbuckets = 5461 bfdtab->count + 1 = 6 | table->nbuckets = 5461 ... bfdtab->count + 1 = 1937 | table->nbuckets = 43690 bfdtab->count + 1 = 1938 | table->nbuckets = 43690 bfdtab->count + 1 = 1 | table->nbuckets = 5461 bfdtab->count + 1 = 2 | table->nbuckets = 5461 ... bfdtab->count + 1 = 998 | table->nbuckets = 174762 bfdtab->count + 1 = 999 | table->nbuckets = 174762 bfdtab->count + 1 = 1000 | table->nbuckets = 174762 bfdtab->count + 1 = 1001 | table->nbuckets = 174762 bfdtab->count + 1 = 1002 | table->nbuckets = 174762 bfdtab->count + 1 = 1003 | table->nbuckets = 174762 ... bfdtab->count + 1 = 1047 | table->nbuckets = 174762 bfdtab->count + 1 = 1048 | table->nbuckets = 174762 bfdtab->count + 1 = 1049 | table->nbuckets = 349525 bfdtab->count + 1 = 1050 | table->nbuckets = 349525 ... bfdtab->count + 1 = 1594 | table->nbuckets = 349525 bfdtab->count + 1 = 1595 | table->nbuckets = 349525 bfdtab->count + 1 = 1596 | table->nbuckets = 349525 bfdtab->count + 1 = 1597 | table->nbuckets = 349525 bfdtab->count + 1 = 1598 | table->nbuckets = 349525 bfdtab->count + 1 = 1599 | table->nbuckets = 0 bfdtab->count + 1 = 1600 | table->nbuckets = 0 bfdtab->count + 1 = 1601 | table->nbuckets = 0 bfdtab->count + 1 = 1602 | table->nbuckets = 0 ... bfdtab->count + 1 = 755246 | table->nbuckets = 0 bfdtab->count + 1 = 755247 | table->nbuckets = 0 bfdtab->count + 1 = 755248 | table->nbuckets = 0 Not sure how helpful this is, but it does at least show why the assertion fail is raised. -- You are receiving this mail because: You are on the CC list for the bug.