Commit 8a0f9b52 authored by zhanghailiang's avatar zhanghailiang Committed by Gerd Hoffmann
Browse files

gtk: fix possible memory leak about local_err



local_err in gd_vc_gfx_init() is not freed, and we don't use it,
so remove it.

Signed-off-by: default avatarzhanghailiang <zhang.zhanghailiang@huawei.com>
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent 9c7074da
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1666,10 +1666,9 @@ static GSList *gd_vc_gfx_init(GtkDisplayState *s, VirtualConsole *vc,
                              QemuConsole *con, int idx,
                              GSList *group, GtkWidget *view_menu)
{
    Error *local_err = NULL;
    Object *obj;

    obj = object_property_get_link(OBJECT(con), "device", &local_err);
    obj = object_property_get_link(OBJECT(con), "device", NULL);
    if (obj) {
        vc->label = g_strdup_printf("%s", object_get_typename(obj));
    } else {