qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] sdl2: skip init without outputs


From: Cole Robinson
Subject: Re: [Qemu-devel] [PATCH] sdl2: skip init without outputs
Date: Thu, 2 Jun 2016 16:47:48 -0400
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0

On 06/01/2016 10:08 AM, Gerd Hoffmann wrote:
> Signed-off-by: Gerd Hoffmann <address@hidden>
> ---
>  ui/sdl2.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/ui/sdl2.c b/ui/sdl2.c
> index 909038f..30d2a3c 100644
> --- a/ui/sdl2.c
> +++ b/ui/sdl2.c
> @@ -794,6 +794,9 @@ void sdl_display_init(DisplayState *ds, int full_screen, 
> int no_frame)
>          }
>      }
>      sdl2_num_outputs = i;
> +    if (sdl2_num_outputs == 0) {
> +        return;
> +    }
>      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);
> 

Tested-by: Cole Robinson <address@hidden>

Thanks,
Cole



reply via email to

[Prev in Thread] Current Thread [Next in Thread]