diff options
author | Christian Beier <dontmind@freeshell.org> | 2011-01-24 23:32:24 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2011-02-07 13:50:47 +0100 |
commit | 9f49600787e99b6d1dc0c52afe1647ef3429cc7b (patch) | |
tree | 7ad190e1005543cdde1aaabb86f0f25f9673d427 /libvncserver/main.c | |
parent | 67b16cdf9099653bc19b01e628036f99729eb2f9 (diff) | |
download | libtdevnc-9f49600787e99b6d1dc0c52afe1647ef3429cc7b.tar.gz libtdevnc-9f49600787e99b6d1dc0c52afe1647ef3429cc7b.zip |
libvncserver: Make RRE, CoRRE and Ultra encodings thread-safe.
This adds generic before/after encoding buffers to the rfbClient
struct, so there is no need for thread local storage.
Signed-off-by: Christian Beier <dontmind@freeshell.org>
Diffstat (limited to 'libvncserver/main.c')
-rw-r--r-- | libvncserver/main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libvncserver/main.c b/libvncserver/main.c index b128581..eab4c84 100644 --- a/libvncserver/main.c +++ b/libvncserver/main.c @@ -1003,9 +1003,6 @@ void rfbScreenCleanup(rfbScreenInfoPtr screen) if(screen->cursor && screen->cursor->cleanup) rfbFreeCursor(screen->cursor); - rfbRRECleanup(screen); - rfbCoRRECleanup(screen); - rfbUltraCleanup(screen); #ifdef LIBVNCSERVER_HAVE_LIBZ rfbZlibCleanup(screen); #ifdef LIBVNCSERVER_HAVE_LIBJPEG |