mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
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:
parent
563e3c6e6e
commit
f3d8b1eb10
2 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue