mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
irssiproxy: Fix warning about uninitalized value
This commit is contained in:
parent
b68c81f767
commit
7e57e3415a
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue