sshdump: may be used uninitialized in this function [-Wmaybe-uninitialized]

This commit is contained in:
Joakim Karlsson 2022-08-12 15:14:42 +02:00 committed by Jaap Keuter
parent 1337db5a18
commit abe78a4109
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ static ssh_channel run_ssh_command(ssh_session sshs, const char* capture_command
const char* capture_command, const gboolean use_sudo, gboolean noprom,
const char* iface, const char* cfilter, const guint32 count)
{
gchar* cmdline;
gchar* cmdline = NULL;
ssh_channel channel;
char** ifaces_array = NULL;
int ifaces_array_num = 0;