summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vnc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnc.c b/vnc.c
index 538658a774..3a7d76234a 100644
--- a/vnc.c
+++ b/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: ");