array overflow in hw/stellaris.c and hw/omap_dss.c

(Jindrich Makovicka)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5064 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
aurel32 2008-08-22 08:57:19 +00:00
parent 563e3c6e6e
commit f3d8b1eb10
2 changed files with 4 additions and 3 deletions

View file

@ -53,7 +53,7 @@ struct omap_dss_s {
uint32_t control;
uint32_t config;
uint32_t capable;
uint32_t timing[3];
uint32_t timing[4];
int line;
uint32_t bg[2];
uint32_t trans[2];
@ -148,6 +148,7 @@ void omap_dss_reset(struct omap_dss_s *s)
s->dispc.timing[0] = 0;
s->dispc.timing[1] = 0;
s->dispc.timing[2] = 0;
s->dispc.timing[3] = 0;
s->dispc.line = 0;
s->dispc.bg[0] = 0;
s->dispc.bg[1] = 0;

View file

@ -1308,8 +1308,8 @@ static void stellaris_init(const char *kernel_filename, const char *cpu_model,
static const int gpio_irq[7] = {0, 1, 2, 3, 4, 30, 31};
qemu_irq *pic;
qemu_irq *gpio_in[5];
qemu_irq *gpio_out[5];
qemu_irq *gpio_in[7];
qemu_irq *gpio_out[7];
qemu_irq adc;
int sram_size;
int flash_size;