sim-card
/
qemu
Archived
10
0
Fork 0

Simplify error handling again.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2275 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2006-12-23 15:18:47 +00:00
parent 9042c0e20d
commit 04d4b0c33f
1 changed files with 4 additions and 7 deletions

View File

@ -167,7 +167,7 @@ int glue(load_elf, SZ)(int fd, int64_t virt_to_phys_addend,
if (!phdr)
goto fail;
if (read(fd, phdr, size) != size)
goto fail1;
goto fail;
if (must_swab) {
for(i = 0; i < ehdr.e_phnum; i++) {
ph = &phdr[i];
@ -184,9 +184,9 @@ int glue(load_elf, SZ)(int fd, int64_t virt_to_phys_addend,
data = qemu_mallocz(mem_size);
if (ph->p_filesz > 0) {
if (lseek(fd, ph->p_offset, SEEK_SET) < 0)
goto fail2;
goto fail;
if (read(fd, data, ph->p_filesz) != ph->p_filesz)
goto fail2;
goto fail;
}
addr = ph->p_vaddr + virt_to_phys_addend;
@ -200,11 +200,8 @@ int glue(load_elf, SZ)(int fd, int64_t virt_to_phys_addend,
}
qemu_free(phdr);
return total_size;
fail2:
fail:
qemu_free(data);
fail1:
qemu_free(phdr);
fail:
return -1;
}