Commit eb214ff8 authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

vnc: fix screen updates



Bug was added by 38ee14f4.
vnc_jobs_join call is missing in one code path.

Reported-by: default avatarAnthony PERARD <anthony.perard@citrix.com>
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent c14e9847
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -935,6 +935,9 @@ static int vnc_update_client(VncState *vs, int has_dirty, bool sync)
        }

        vnc_job_push(job);
        if (sync) {
            vnc_jobs_join(vs);
        }
        vs->force_update = 0;
        return n;
    }