diff options
author | Christian Beier <dontmind@freeshell.org> | 2011-03-17 17:00:43 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2011-03-17 17:00:43 +0100 |
commit | 62b7acf48009cfad1a54bd8ba04b662f9ac53c80 (patch) | |
tree | a096b34a0aa0e771ad3b4c4f4c3ede44938b0243 /libvncclient | |
parent | ab9fc40aab8fc3a6ec732a9afd87b8786e1046d3 (diff) | |
download | libtdevnc-62b7acf48009cfad1a54bd8ba04b662f9ac53c80.tar.gz libtdevnc-62b7acf48009cfad1a54bd8ba04b662f9ac53c80.zip |
Fix regression in Ultra encoding introduced by commit fe1ca16e9b75b5f38ab374c8dfff92d2c3ea4532.
My bad. There we see what the encodings test is good for ;-)
Diffstat (limited to 'libvncclient')
-rw-r--r-- | libvncclient/ultra.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvncclient/ultra.c b/libvncclient/ultra.c index dddb0c0..dac89b5 100644 --- a/libvncclient/ultra.c +++ b/libvncclient/ultra.c @@ -57,7 +57,7 @@ HandleUltraBPP (rfbClient* client, int rx, int ry, int rw, int rh) * buffer, this buffer allocation should only happen once, on the * first update. */ - if ( client->raw_buffer_size < uncompressedBytes) { + if ( client->raw_buffer_size < (int)uncompressedBytes) { if ( client->raw_buffer != NULL ) { free( client->raw_buffer ); } @@ -141,7 +141,7 @@ HandleUltraZipBPP (rfbClient* client, int rx, int ry, int rw, int rh) * buffer, this buffer allocation should only happen once, on the * first update. */ - if ( client->raw_buffer_size < (uncompressedBytes + 500)) { + if ( client->raw_buffer_size < (int)(uncompressedBytes + 500)) { if ( client->raw_buffer != NULL ) { free( client->raw_buffer ); } |