-- fix a double free in avirus

-- the last commit also committed building rules by default
This commit is contained in:
pfelt
2009-04-25 03:15:31 +00:00
parent 5c26d034c4
commit d4a8e0f8f2
-6
View File
@@ -49,12 +49,6 @@ AVirusClientFree(void *client)
{
register AVirusClient *c = client;
if (c->conn) {
ConnClose(c->conn, 1);
ConnFree(c->conn);
c->conn = NULL;
}
if (c->envelope) {
MemFree(c->envelope);
}