Sync OpenBSD patchset 947:

Fix a couple of memory leaks, from marcel partap.
This commit is contained in:
Tiago Cunha
2011-08-21 12:39:34 +00:00
parent 87a2a13f68
commit 2651c0d69c
2 changed files with 5 additions and 1 deletions

View File

@@ -170,6 +170,8 @@ server_client_lost(struct client *c)
if (c->cwd != NULL)
xfree(c->cwd);
environ_free(&c->environ);
close(c->ibuf.fd);
imsg_clear(&c->ibuf);
event_del(&c->event);