1
1

poll: Fix size types in ssh_event_free()

src/poll.c:1024:9: error: assuming signed overflow does not occur when
    simplifying conditional to constant [-Werror=strict-overflow]

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
Andreas Schneider 2018-08-30 08:52:42 +02:00
родитель 8243030c55
Коммит 11d87238b8

Просмотреть файл

@ -1015,7 +1015,7 @@ int ssh_event_remove_connector(ssh_event event, ssh_connector connector){
*/
void ssh_event_free(ssh_event event)
{
int used, i;
size_t used, i;
ssh_poll_handle p;
if(event == NULL) {