1
0
Fork 0

irssiproxy: Fix warning about uninitalized value

This commit is contained in:
dequis 2015-10-06 08:05:11 -03:00
parent b68c81f767
commit 7e57e3415a
1 changed files with 2 additions and 1 deletions

View File

@ -708,7 +708,8 @@ static void read_settings(void)
LISTEN_REC *rec;
GSList *remove_listens = NULL;
GSList *add_listens = NULL;
char **ports, **tmp, *ircnet, *port, *sslfile;
char **ports, **tmp, *ircnet, *port;
char *sslfile = NULL;
int portnum;
remove_listens = g_slist_copy(proxy_listens);