fix for large clip data

ulab-original
jsorg71 19 years ago
parent 770a27bfb3
commit bff658c96b

@ -616,6 +616,7 @@ lib_clip_data(struct vnc* v)
struct stream* s; struct stream* s;
int size; int size;
int error; int error;
int temp;
make_stream(s); make_stream(s);
init_stream(s, 8192); init_stream(s, 8192);
@ -624,8 +625,17 @@ lib_clip_data(struct vnc* v)
{ {
in_uint8s(s, 3); in_uint8s(s, 3);
in_uint32_be(s, size); in_uint32_be(s, size);
while (size > 0 && error == 0)
{
init_stream(s, 8192); init_stream(s, 8192);
error = lib_recv(v, s->data, size); temp = size;
if (temp > 8192)
{
temp = 8192;
}
error = lib_recv(v, s->data, temp);
size -= temp;
}
} }
free_stream(s); free_stream(s);
return error; return error;

Loading…
Cancel
Save