mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 02:58:29 +00:00
error: Drop a few superfluous ERRP_GUARD()
include/qapi/error.h on ERRP_GUARD(): * It must be used when the function dereferences @errp or passes * @errp to error_prepend(), error_vprepend(), or error_append_hint(). * It is safe to use even when it's not needed, but please avoid * cluttering the source with useless code. Clean up some of this clutter. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20221121085054.683122-3-armbru@redhat.com>
This commit is contained in:
@@ -357,7 +357,6 @@ static void write_elf32_notes(WriteCoreDumpFunction f, DumpState *s,
|
||||
|
||||
static void write_elf_phdr_note(DumpState *s, Error **errp)
|
||||
{
|
||||
ERRP_GUARD();
|
||||
Elf32_Phdr phdr32;
|
||||
Elf64_Phdr phdr64;
|
||||
void *phdr;
|
||||
@@ -773,7 +772,6 @@ static void dump_iterate(DumpState *s, Error **errp)
|
||||
static void dump_end(DumpState *s, Error **errp)
|
||||
{
|
||||
int rc;
|
||||
ERRP_GUARD();
|
||||
|
||||
if (s->elf_section_data_size) {
|
||||
s->elf_section_data = g_malloc0(s->elf_section_data_size);
|
||||
|
||||
Reference in New Issue
Block a user