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:
Doug Rabson 2008-08-13 12:04:54 +00:00
parent 88abcb07bd
commit 8082cff418
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181684

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));
}