(fix of commit
6a32bb4)
Issue #245 (bdwgc).
* headers.c (GC_install_counts): Better comment for the case of
overflow.
for (hbp = h; (word)hbp < (word)h + sz; hbp += BOTTOM_SZ) {
if (!get_index((word) hbp)) return(FALSE);
if ((word)hbp > (~(word)0) - (word)BOTTOM_SZ * HBLKSIZE)
- break; /* overflow */
+ break; /* overflow of hbp+=BOTTOM_SZ is expected */
}
if (!get_index((word)h + sz - 1)) return(FALSE);
for (hbp = h + 1; (word)hbp < (word)h + sz; hbp += 1) {