Fix sequence buffer overrun
This commit is contained in:
parent
0178d3319c
commit
e1f08bb8ac
|
@ -2174,6 +2174,7 @@ void sequence_channel_process_script(struct SequenceChannel *seqChannel) {
|
||||||
loBits = cmd & 7;
|
loBits = cmd & 7;
|
||||||
switch (cmd & 0xf8) {
|
switch (cmd & 0xf8) {
|
||||||
case 0x80:
|
case 0x80:
|
||||||
|
if (loBits >= LAYERS_MAX) break;
|
||||||
if (seqChannel->layers[loBits] != NULL) {
|
if (seqChannel->layers[loBits] != NULL) {
|
||||||
value = seqChannel->layers[loBits]->finished;
|
value = seqChannel->layers[loBits]->finished;
|
||||||
} else {
|
} else {
|
||||||
|
@ -2218,6 +2219,7 @@ void sequence_channel_process_script(struct SequenceChannel *seqChannel) {
|
||||||
break;
|
break;
|
||||||
#else
|
#else
|
||||||
case 0x00: // chan_testlayerfinished
|
case 0x00: // chan_testlayerfinished
|
||||||
|
if (loBits >= LAYERS_MAX) break;
|
||||||
if (seqChannel->layers[loBits] != NULL) {
|
if (seqChannel->layers[loBits] != NULL) {
|
||||||
value = seqChannel->layers[loBits]->finished;
|
value = seqChannel->layers[loBits]->finished;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue