cris-dis: Clean memory allocation
commit520a02f8b844152929817b686113aed27229d3a9
authorStefan Weil <sw@weilnetz.de>
Mon, 9 Jan 2012 18:23:42 +0000 (9 19:23 +0100)
committerEdgar E. Iglesias <edgar.iglesias@gmail.com>
Tue, 10 Jan 2012 08:36:43 +0000 (10 09:36 +0100)
tree1097f88a17859c30e1aea881437edc5ddbf25368
parentcd9244e48a6643752fccecd344d85d1c4de5cbad
cris-dis: Clean memory allocation

The old code used sizeof(const struct cris_opcode **) where it should
have used sizeof(const struct cris_opcode *). As both sizes give the
same value, the resulting binary was ok, but static code analyzers
like coverity and clang complained.

This is fixed here, and the code is also simplified by using g_new0.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
cris-dis.c