Skip to content

Commit

Permalink
vnc: fix screen updates
Browse files Browse the repository at this point in the history
Bug was added by 38ee14f.
vnc_jobs_join call is missing in one code path.

Reported-by: Anthony PERARD <anthony.perard@citrix.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
  • Loading branch information
kraxel committed Jun 19, 2014
1 parent c14e984 commit eb214ff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ui/vnc.c
Expand Up @@ -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;
}
Expand Down

0 comments on commit eb214ff

Please sign in to comment.