From: David Edelsohn Date: Mon, 7 Apr 1997 19:45:47 +0000 (+0000) Subject: * cgen-dis.c (build_dis_hash_table): Fix xmalloc size computation. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=21b4ac17687ab852b5159de7bd120aa2b7713567;p=binutils-gdb.git * cgen-dis.c (build_dis_hash_table): Fix xmalloc size computation. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 44d48203803..cd108fc6219 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,7 @@ Mon Apr 7 11:45:44 1997 Doug Evans + * cgen-dis.c (build_dis_hash_table): Fix xmalloc size computation. + * cgen-opc.c (hash_keyword_name): Improve algorithm. * disassemble.c (disassembler): Handle m32r. diff --git a/opcodes/cgen-dis.c b/opcodes/cgen-dis.c index 384fe5c311b..9ed8a0a9973 100644 --- a/opcodes/cgen-dis.c +++ b/opcodes/cgen-dis.c @@ -70,7 +70,7 @@ build_dis_hash_table () dis_hash_table = (CGEN_INSN_LIST **) xmalloc (hash_size * sizeof (CGEN_INSN_LIST *) - + count * sizeof (CGEN_INSN_LIST *)); + + count * sizeof (CGEN_INSN_LIST)); memset (dis_hash_table, 0, hash_size * sizeof (CGEN_INSN_LIST *) + count * sizeof (CGEN_INSN_LIST));