1
1

sftp: Fix memory leak in sftp_free() on server.

Thanks to Tom Judge for the report.
Этот коммит содержится в:
Andreas Schneider 2012-02-04 20:55:34 +01:00
родитель a311ec32b1
Коммит 47226d9d44

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

@ -242,6 +242,9 @@ void sftp_free(sftp_session sftp){
}
ssh_channel_free(sftp->channel);
SAFE_FREE(sftp->handles);
sftp_ext_free(sftp->ext);
ZERO_STRUCTP(sftp);