Commit 9eee9a5dacf1a4e6a8bb4f19c05bfc87688a8549
1 parent
10781c09
ETRAX-FS: Fix a segfault if pflash drive not found.
drive_get_index() returns -1 if a drive isn't found; don't use -1 to index drives_table. Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5719 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/etraxfs.c
... | ... | @@ -83,7 +83,7 @@ void bareetraxfs_init (ram_addr_t ram_size, int vga_ram_size, |
83 | 83 | phys_flash = qemu_ram_alloc(FLASH_SIZE); |
84 | 84 | i = drive_get_index(IF_PFLASH, 0, 0); |
85 | 85 | pflash_cfi02_register(0x0, phys_flash, |
86 | - drives_table[i].bdrv, (64 * 1024), | |
86 | + i != -1 ? drives_table[i].bdrv : NULL, (64 * 1024), | |
87 | 87 | FLASH_SIZE >> 16, |
88 | 88 | 1, 2, 0x0000, 0x0000, 0x0000, 0x0000, |
89 | 89 | 0x555, 0x2aa); | ... | ... |