Previous | 199869 Revisions | Next |
r18112 Monday 24th September, 2012 at 14:01:50 UTC by Oliver Stöneberg |
---|
fixed MT03464: fixed potential out of array access in src/emu/video/voodoo.c logerror() [Oliver Stöneberg] |
[src/emu/video] | voodoo.c |
r18111 | r18112 | |
---|---|---|
3720 | 3720 | /* first make sure this register is readable */ |
3721 | 3721 | if (!(v->regaccess[regnum] & REGISTER_READ)) |
3722 | 3722 | { |
3723 | logerror("VOODOO.%d.ERROR:Invalid attempt to read %s\n", v->index, v->regnames[regnum]); | |
3723 | logerror("VOODOO.%d.ERROR:Invalid attempt to read %s\n", v->index, regnum < 225 ? v->regnames[regnum] : "unknown register"); | |
3724 | 3724 | return 0xffffffff; |
3725 | 3725 | } |
3726 | 3726 |
Previous | 199869 Revisions | Next |