channels: Fix ssh_channel_poll_timeout() not returing available bytes
Fixes T211 Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
Этот коммит содержится в:
родитель
07f571f1c0
Коммит
022409e99c
@ -3119,6 +3119,11 @@ int ssh_channel_poll_timeout(ssh_channel channel, int timeout, int is_stderr)
|
|||||||
}
|
}
|
||||||
len = ssh_buffer_get_len(stdbuf);
|
len = ssh_buffer_get_len(stdbuf);
|
||||||
if (len > 0) {
|
if (len > 0) {
|
||||||
|
if (len > INT_MAX) {
|
||||||
|
rc = SSH_ERROR;
|
||||||
|
} else {
|
||||||
|
rc = (int)len;
|
||||||
|
}
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
if (channel->remote_eof) {
|
if (channel->remote_eof) {
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user