mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
vnc: Fix crash on 'info vnc' after 'change vnc none'
vnc_state->display is set to NULL after "change vnc none" but vnc_state itself is still valid. (James Ko) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6010 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f60d2728cc
commit
13412c9d2f
1 changed files with 1 additions and 1 deletions
2
vnc.c
2
vnc.c
|
@ -183,7 +183,7 @@ static VncState *vnc_state; /* needed for info vnc */
|
|||
|
||||
void do_info_vnc(void)
|
||||
{
|
||||
if (vnc_state == NULL)
|
||||
if (vnc_state == NULL || vnc_state->display == NULL)
|
||||
term_printf("VNC server disabled\n");
|
||||
else {
|
||||
term_printf("VNC server active on: ");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue