[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/5] dump: Fix g_array_unref(NULL) in dump-guest-memory
|
From: |
Marc-André Lureau |
|
Subject: |
Re: [PATCH 2/5] dump: Fix g_array_unref(NULL) in dump-guest-memory |
|
Date: |
Tue, 31 Oct 2023 10:53:52 +0400 |
Hi
On Mon, Oct 30, 2023 at 5:37 PM Markus Armbruster <armbru@redhat.com> wrote:
>
> When dump_init()'s check for non-zero @length fails, dump_cleanup()
> passes null s->string_table_buf to g_array_unref(), which spews "GLib:
> g_array_unref: assertion 'array' failed" to stderr.
>
> Guard the g_array_unref().
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> dump/dump.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/dump/dump.c b/dump/dump.c
> index a1fad17f9c..d8ea364af2 100644
> --- a/dump/dump.c
> +++ b/dump/dump.c
> @@ -100,7 +100,9 @@ static int dump_cleanup(DumpState *s)
> memory_mapping_list_free(&s->list);
> close(s->fd);
> g_free(s->guest_note);
> - g_array_unref(s->string_table_buf);
> + if (s->string_table_buf) {
> + g_array_unref(s->string_table_buf);
> + }
or:
g_clear_pointer(&s->string_table_buf, g_array_unref)
> s->guest_note = NULL;
> if (s->resume) {
> if (s->detached) {
> --
> 2.41.0
>
- [PATCH 0/5] dump: Minor fixes & improvements, Markus Armbruster, 2023/10/30
- [PATCH 5/5] dump: Drop redundant check for empty dump, Markus Armbruster, 2023/10/30
- [PATCH 3/5] dump: Recognize "fd:" protocols on Windows hosts, Markus Armbruster, 2023/10/30
- [PATCH 1/5] dump: Rename qmp_dump_guest_memory() parameter to match QAPI schema, Markus Armbruster, 2023/10/30
- [PATCH 4/5] dump: Improve some dump-guest-memory error messages, Markus Armbruster, 2023/10/30
- [PATCH 2/5] dump: Fix g_array_unref(NULL) in dump-guest-memory, Markus Armbruster, 2023/10/30
- Re: [PATCH 2/5] dump: Fix g_array_unref(NULL) in dump-guest-memory,
Marc-André Lureau <=