1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-04-19 02:24:03 +03:00

examples: Avoid using uninitialized memory

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Norbert Pocs <norbertpocs0@gmail.com>
This commit is contained in:
Jakub Jelen 2025-04-16 17:10:00 +02:00
parent 0bcd7d12d8
commit 3d0226cadc

View File

@ -8,7 +8,7 @@
int main(void) {
ssh_session session;
ssh_channel channel;
char buffer[1024*1024];
char buffer[1024 * 1024] = {0};
int rc;
uint64_t total=0;
uint64_t lastshown=4096;
@ -47,7 +47,7 @@ int main(void) {
if(total > LIMIT)
break;
}
if (rc < 0) {
printf("error : %s\n",ssh_get_error(session));
ssh_channel_close(channel);