mirror of
https://github.com/mii443/qemu.git
synced 2025-09-01 14:49:23 +00:00
Merge remote-tracking branch 'remotes/kraxel/tags/fixes-20201127-pull-request' into staging
qxl: fix segfault # gpg: Signature made Fri 27 Nov 2020 07:06:51 GMT # gpg: using RSA key 4CB6D8EED3E87138 # gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>" [full] # gpg: aka "Gerd Hoffmann <gerd@kraxel.org>" [full] # gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>" [full] # Primary key fingerprint: A032 8CFF B93A 17A7 9901 FE7D 4CB6 D8EE D3E8 7138 * remotes/kraxel/tags/fixes-20201127-pull-request: qxl: fix segfault Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
@ -264,7 +264,9 @@ static void gui_setup_refresh(DisplayState *ds)
|
|||||||
|
|
||||||
void graphic_hw_update_done(QemuConsole *con)
|
void graphic_hw_update_done(QemuConsole *con)
|
||||||
{
|
{
|
||||||
qemu_co_queue_restart_all(&con->dump_queue);
|
if (con) {
|
||||||
|
qemu_co_queue_restart_all(&con->dump_queue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void graphic_hw_update(QemuConsole *con)
|
void graphic_hw_update(QemuConsole *con)
|
||||||
|
Reference in New Issue
Block a user