diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1997-04-07 19:45:47 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1997-04-07 19:45:47 +0000 |
commit | 21b4ac17687ab852b5159de7bd120aa2b7713567 (patch) | |
tree | 2697df52cf7615da52a670b646447029a078bba5 /opcodes | |
parent | 70bb1aa163ad2e4aa8a85369bf08515ad5044458 (diff) | |
download | binutils-gdb-21b4ac17687ab852b5159de7bd120aa2b7713567.tar.gz |
* cgen-dis.c (build_dis_hash_table): Fix xmalloc size computation.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 2 | ||||
-rw-r--r-- | opcodes/cgen-dis.c | 2 |
2 files changed, 3 insertions, 1 deletions
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 <dje@canuck.cygnus.com> + * 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)); |