1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-02 06:11:11 +00:00

irssiproxy: Fix warning about uninitalized value

This commit is contained in:
dequis 2015-10-06 08:05:11 -03:00
parent b68c81f767
commit 7e57e3415a

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);