mirror of
https://github.com/dingusdev/dingusppc.git
synced 2026-04-21 09:16:48 +00:00
ppcdisasm: fix string buffer overflow in VS19.
This commit is contained in:
@@ -425,7 +425,7 @@ void opc_bcx(PPCDisasmContext* ctx)
|
||||
{
|
||||
uint32_t bo, bi, dst, cr;
|
||||
char opcode[10] = "b";
|
||||
char operands[10] = "";
|
||||
char operands[12] = "";
|
||||
|
||||
bo = (ctx->instr_code >> 21) & 0x1F;
|
||||
bi = (ctx->instr_code >> 16) & 0x1F;
|
||||
|
||||
Reference in New Issue
Block a user