https://sourceware.org/bugzilla/show_bug.cgi?id=31109
--- Comment #6 from Vladimir Mezentsev <vladimir.mezentsev at oracle dot com> --- I removed only compiler errors to continue my build. Like this: % diff $old_binutils/libctf/ctf-hash.c libctf/ctf-hash.c 168,169c168,169 < else < dynhash = malloc (offsetof (ctf_dynhash_t, key_free)); --- > else dynhash = malloc (sizeof (ctf_dynhash_t)); > 222c222 < *slot = malloc (offsetof (ctf_helem_t, owner)); --- > *slot = malloc (sizeof (ctf_helem_t)); The correct fix is needed. -- You are receiving this mail because: You are on the CC list for the bug.