mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-04 12:20:42 +09:00
Resolved the unitialized data_except member variable in socket.c, thanks
Norbert git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@177 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
@@ -72,6 +72,9 @@ struct socket *ssh_socket_new(SSH_SESSION *session){
|
||||
s->session=session;
|
||||
s->in_buffer=buffer_new();
|
||||
s->out_buffer=buffer_new();
|
||||
s->data_to_read=0;
|
||||
s->data_to_write=0;
|
||||
s->data_except=0;
|
||||
return s;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user