Commit 22b1de06 authored by Sage Weil's avatar Sage Weil

ceph: fix leak of mon authorizer

Fix leak of a struct ceph_buffer on umount.
Signed-off-by: default avatarSage Weil <sage@newdream.net>
parent ed98adad
......@@ -613,6 +613,9 @@ static void ceph_x_destroy(struct ceph_auth_client *ac)
remove_ticket_handler(ac, th);
}
if (xi->auth_authorizer.buf)
ceph_buffer_put(xi->auth_authorizer.buf);
kfree(ac->private);
ac->private = NULL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment