Add a missing call to mtx_destroy() in clnt_reconnect_destroy().

Submitted by:	zachary.loafman at isilon.com
MFC after:	2 weeks
This commit is contained in:
dfr 2008-08-13 12:04:54 +00:00
parent 0dc2a27f4a
commit c7b8f980d8

View File

@ -385,6 +385,7 @@ clnt_reconnect_destroy(CLIENT *cl)
if (rc->rc_client)
CLNT_DESTROY(rc->rc_client);
mtx_destroy(&rc->rc_lock);
mem_free(rc, sizeof(*rc));
mem_free(cl, sizeof (CLIENT));
}