Commit 333cb18f authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

console: fix -vga none -sdl crash



Call get_alloc_displaystate() for proper initialization
instead of allocating with g_new().

Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent a1d2db08
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1580,10 +1580,7 @@ DisplayState *init_displaystate(void)
    gchar *name;
    int i;

    if (!display_state) {
        display_state = g_new0(DisplayState, 1);
    }

    get_alloc_displaystate();
    for (i = 0; i < nb_consoles; i++) {
        if (consoles[i]->console_type != GRAPHIC_CONSOLE &&
            consoles[i]->ds == NULL) {