Re: [Qemu-devel] [Qemu-ppc] [PATCH] target-ppc: Fix overallocation of opcode tables

2014-03-19 Thread Andreas Färber
Am 19.03.2014 16:14, schrieb Tom Musta: > On 3/19/2014 9:07 AM, Stuart Brady wrote: >> create_new_table() should allocate 0x20 opc_handler_t pointers, but >> actually allocates 0x20 opc_handler_t structs. Fix this. >> >> Signed-off-by: Stuart Brady > > Reviewed-by: Tom Musta > Tested-by: Tom Mu

Re: [Qemu-devel] [Qemu-ppc] [PATCH] target-ppc: Fix overallocation of opcode tables

2014-03-19 Thread Tom Musta
On 3/19/2014 9:07 AM, Stuart Brady wrote: > create_new_table() should allocate 0x20 opc_handler_t pointers, but > actually allocates 0x20 opc_handler_t structs. Fix this. > > Signed-off-by: Stuart Brady > --- > translate_init.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > dif