[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v3 2/3] elf-ops.h: Map into memory the ELF to lo
From: |
Paolo Bonzini |
Subject: |
Re: [Qemu-devel] [PATCH v3 2/3] elf-ops.h: Map into memory the ELF to load |
Date: |
Wed, 24 Jul 2019 15:07:49 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 |
On 24/07/19 14:35, Stefano Garzarella wrote:
>> Isn't the success case missing a g_mapped_file_unref? It has to be done
>> unconditionally since now rom_add_elf_program adds a separate reference.
> Sure, I had this in mind, since I initialized mapped_file to NULL, but
> I didn't see the return before "fail:" label!
> Maybe I'll change the end of load_elf() in this way:
>
> - g_free(phdr);
> if (lowaddr)
> *lowaddr = (uint64_t)(elf_sword)low;
> if (highaddr)
> *highaddr = (uint64_t)(elf_sword)high;
> - return total_size;
> + ret = total_size;
> fail:
> - g_free(data);
> + g_mapped_file_unref(mapped_file);
> g_free(phdr);
> return ret;
> }
>
>
Yes, this looks better!
Paolo