mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-07-31 00:03:07 +03:00
examples: Initialize pointers
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
This commit is contained in:
@ -1481,9 +1481,9 @@ static void sigchld_handler(int signo)
|
|||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
ssh_bind sshbind;
|
ssh_bind sshbind = NULL;
|
||||||
ssh_session session;
|
ssh_session session = NULL;
|
||||||
ssh_event event;
|
ssh_event event = NULL;
|
||||||
struct sigaction sa;
|
struct sigaction sa;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user