summaryrefslogtreecommitdiff
path: root/src/ivysocket.c
diff options
context:
space:
mode:
authorfcolin2005-08-19 13:44:02 +0000
committerfcolin2005-08-19 13:44:02 +0000
commit0461197d573f0d38c3ce2c7e6ba55cb8c5727d42 (patch)
tree04d59a93302e2fce6c498adfa5f5415d4ba22b0e /src/ivysocket.c
parent9921017a4b14b379d99305e17f8583ff90de0c1b (diff)
downloadivy-c-0461197d573f0d38c3ce2c7e6ba55cb8c5727d42.zip
ivy-c-0461197d573f0d38c3ce2c7e6ba55cb8c5727d42.tar.gz
ivy-c-0461197d573f0d38c3ce2c7e6ba55cb8c5727d42.tar.bz2
ivy-c-0461197d573f0d38c3ce2c7e6ba55cb8c5727d42.tar.xz
correction bug malloc free
Diffstat (limited to 'src/ivysocket.c')
-rw-r--r--src/ivysocket.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ivysocket.c b/src/ivysocket.c
index d2f3259..9ff66a0 100644
--- a/src/ivysocket.c
+++ b/src/ivysocket.c
@@ -303,6 +303,7 @@ void SocketServerClose (Server server )
if (!server)
return;
IvyChannelRemove( server->channel );
+ IVY_LIST_REMOVE (servers_list, server );
}
char *SocketGetPeerHost (Client client )