summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/scudsp/scudspdasm.c
diff options
context:
space:
mode:
author Wilbert Pol <wilbert@jdg.info>2013-10-10 20:35:14 +0000
committer Wilbert Pol <wilbert@jdg.info>2013-10-10 20:35:14 +0000
commite4fd43dac83cd1195751ad5c8c14ea94b954ace5 (patch)
treed453deba3e328f6ab5cdf7d3be0cecc032815381 /src/emu/cpu/scudsp/scudspdasm.c
parent6cb00b200e78bf074fa976aeb4242c35a66b3ead (diff)
scudspdasm.c: Prevent out of array access from line 314 (nw)
Diffstat (limited to 'src/emu/cpu/scudsp/scudspdasm.c')
-rw-r--r--src/emu/cpu/scudsp/scudspdasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/scudsp/scudspdasm.c b/src/emu/cpu/scudsp/scudspdasm.c
index 46b13181a9a..2fe8154c44f 100644
--- a/src/emu/cpu/scudsp/scudspdasm.c
+++ b/src/emu/cpu/scudsp/scudspdasm.c
@@ -242,7 +242,7 @@ CPU_DISASSEMBLE( scudsp )
// const char *sym, *sym2;
char *my_buffer = buffer;
char temp_buffer[64];
- UINT32 data[2];
+ UINT32 data[3];
switch( op >> 30 )
{