qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Hervé Poussineau" <hpoussin@reactos.org>,
	"Gerd Hoffmann" <kraxel@redhat.com>
Subject: [Qemu-devel] [PULL 01/11] ui/gtk: fix crash at startup when no console is available
Date: Wed,  4 Jan 2017 12:21:13 +0100	[thread overview]
Message-ID: <1483528883-1753-2-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1483528883-1753-1-git-send-email-kraxel@redhat.com>

From: Hervé Poussineau <hpoussin@reactos.org>

This patch fixes a segfault at QEMU startup, introduced in a08156321ab9a7d2fed9ee77dbfeea2a61ffd153.
gd_vc_find_current() return NULL, which is dereferenced without checking it.

While at it, disable the whole 'View' menu if no console exists.

Reproducer: qemu-system-i386 -M none -nodefaults

Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 1483263585-8101-1-git-send-email-hpoussin@reactos.org
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 ui/gtk.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/ui/gtk.c b/ui/gtk.c
index a216216..406de4f 100644
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -2171,6 +2171,8 @@ static gboolean gtkinit;
 
 void gtk_display_init(DisplayState *ds, bool full_screen, bool grab_on_hover)
 {
+    VirtualConsole *vc;
+
     GtkDisplayState *s = g_malloc0(sizeof(*s));
     char *filename;
     GdkDisplay *window_display;
@@ -2249,9 +2251,11 @@ void gtk_display_init(DisplayState *ds, bool full_screen, bool grab_on_hover)
     }
 #endif
 
+    vc = gd_vc_find_current(s);
+    gtk_widget_set_sensitive(s->view_menu, vc != NULL);
 #ifdef CONFIG_VTE
     gtk_widget_set_sensitive(s->copy_item,
-                             gd_vc_find_current(s)->type == GD_VC_VTE);
+                             vc && vc->type == GD_VC_VTE);
 #endif
 
     if (full_screen) {
-- 
1.8.3.1

  reply	other threads:[~2017-01-04 11:21 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-04 11:21 [Qemu-devel] [PULL 00/11] ui patch queue Gerd Hoffmann
2017-01-04 11:21 ` Gerd Hoffmann [this message]
2017-01-04 11:21 ` [Qemu-devel] [PULL 02/11] ui: use evdev keymap when running under wayland Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 03/11] ps2: Fix lost scancodes by recent changes Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 04/11] console: add API to get underlying gui window ID Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 05/11] console: move window ID code from baum to sdl Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 06/11] sdl2: set window ID Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 07/11] egl-helpers: Change file licensing to LGPLv2 Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 08/11] gtk: avoid oob array access Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 09/11] ui: drop unused MOUSE_EVENT_WHEEL{UP, DN} defines Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 10/11] ui/vnc: Fix problem with sending too many bytes as server name Gerd Hoffmann
2017-01-04 11:21 ` [Qemu-devel] [PULL 11/11] curses: Fix compiler warnings (Mingw-w64 redefinition of macro KEY_EVENT) Gerd Hoffmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1483528883-1753-2-git-send-email-kraxel@redhat.com \
    --to=kraxel@redhat.com \
    --cc=hpoussin@reactos.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).