1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Don't try to free ircnet if it's NULL.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@530 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-07-23 23:32:28 +00:00 committed by cras
parent c529fe0096
commit eebfab17cb

View File

@ -311,7 +311,7 @@ static void setupserver_destroy(SETUP_SERVER_REC *rec)
g_free_not_null(rec->own_host);
g_free_not_null(rec->own_ip);
g_free(rec->ircnet);
g_free_not_null(rec->ircnet);
g_free(rec->address);
g_free_not_null(rec->password);
g_free(rec);