LibVNCServer: fix starting of an onHold-client in threaded mode.

Discovered by madscientist159 on 11 Jan 2015:

"noted in testing with the threaded server build, whereby
if newClientHook() returned RFB_CLIENT_ON_HOLD there was no
way to release the hold when the server became ready"
pull/1/head
Christian Beier 7 years ago
parent 227e1d76ab
commit 78b101f09d
No known key found for this signature in database
GPG Key ID: 421BB3B45C6067F8

@ -612,21 +612,18 @@ listenerRun(void *data)
return(NULL);
}
void
rfbStartOnHoldClient(rfbClientPtr cl)
{
pthread_create(&cl->client_thread, NULL, clientInput, (void *)cl);
}
#else
#endif
void
rfbStartOnHoldClient(rfbClientPtr cl)
{
cl->onHold = FALSE;
#ifdef LIBVNCSERVER_HAVE_LIBPTHREAD
if(cl->screen->backgroundLoop)
pthread_create(&cl->client_thread, NULL, clientInput, (void *)cl);
#endif
}
#endif
void
rfbRefuseOnHoldClient(rfbClientPtr cl)

Loading…
Cancel
Save