* [Qemu-devel] [PATCH] ui/gtk: fix crash at startup when no console is available
@ 2017-01-01 9:39 Hervé Poussineau
2017-01-03 16:32 ` Stefan Hajnoczi
0 siblings, 1 reply; 2+ messages in thread
From: Hervé Poussineau @ 2017-01-01 9:39 UTC (permalink / raw)
To: qemu-devel
Cc: Stefan Hajnoczi, Kevin Wolf, Stefan Weil, Michael S. Tsirkin,
Gerd Hoffmann, qemu-stable, Hervé Poussineau
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>
---
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) {
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] ui/gtk: fix crash at startup when no console is available
2017-01-01 9:39 [Qemu-devel] [PATCH] ui/gtk: fix crash at startup when no console is available Hervé Poussineau
@ 2017-01-03 16:32 ` Stefan Hajnoczi
0 siblings, 0 replies; 2+ messages in thread
From: Stefan Hajnoczi @ 2017-01-03 16:32 UTC (permalink / raw)
To: Hervé Poussineau
Cc: qemu-devel, Kevin Wolf, Michael S. Tsirkin, Stefan Weil,
qemu-stable, Gerd Hoffmann, Stefan Hajnoczi
[-- Attachment #1: Type: text/plain, Size: 593 bytes --]
On Sun, Jan 01, 2017 at 10:39:45AM +0100, Hervé Poussineau wrote:
> 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>
> ---
> ui/gtk.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
Oops, sorry!
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-01-03 16:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-01 9:39 [Qemu-devel] [PATCH] ui/gtk: fix crash at startup when no console is available Hervé Poussineau
2017-01-03 16:32 ` Stefan Hajnoczi
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).