]> Git Repo - qemu.git/commitdiff
vnc: make sure we finish disconnect
authorGerd Hoffmann <[email protected]>
Wed, 13 Jul 2016 10:21:20 +0000 (12:21 +0200)
committerGerd Hoffmann <[email protected]>
Fri, 15 Jul 2016 10:00:06 +0000 (12:00 +0200)
It may happen that vnc connections linger in disconnecting state forever
because VncState happens to be in a state where vnc_update_client()
exists early and never reaches the vnc_disconnect_finish() call at the
bottom of the function.  Fix that by doing an additinal check at the
start of the function.

https://bugzilla.redhat.com/show_bug.cgi?id=1352799

Signed-off-by: Gerd Hoffmann <[email protected]>
Message-id: 1468405280[email protected]

ui/vnc.c

index e3f857cc903071ea3e5c1f51bb1ca47faf851ab2..3ce3a5beec44867f702696b26399bd64a5e0106f 100644 (file)
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -1024,6 +1024,11 @@ static int find_and_clear_dirty_height(VncState *vs,
 
 static int vnc_update_client(VncState *vs, int has_dirty, bool sync)
 {
+    if (vs->disconnecting) {
+        vnc_disconnect_finish(vs);
+        return 0;
+    }
+
     vs->has_dirty += has_dirty;
     if (vs->need_update && !vs->disconnecting) {
         VncDisplay *vd = vs->vd;
This page took 0.023021 seconds and 4 git commands to generate.