diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-21 14:22:34 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-23 11:50:46 +0200 |
commit | 85970a627f308483053f18a342037245d0fee469 (patch) | |
tree | 3399184e8e2513b8d5af5ea6f1dac3eaa674c4d8 /ui | |
parent | 51dbea77a29ea46173373a6dad4ebd95d4661f42 (diff) |
sdl2: add assert to make coverity happy
There is a loop a few lines up counting consoles and setting
sdl2_num_outputs accordingly, so con ptr can't be NULL there.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20170621122234.12751-1-kraxel@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/sdl2.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -804,6 +804,7 @@ void sdl_display_init(DisplayState *ds, int full_screen, int no_frame) sdl2_console = g_new0(struct sdl2_console, sdl2_num_outputs); for (i = 0; i < sdl2_num_outputs; i++) { QemuConsole *con = qemu_console_lookup_by_index(i); + assert(con != NULL); if (!qemu_console_is_graphic(con)) { sdl2_console[i].hidden = true; } |