diff options
author | Noah Watkins <noahwatkins@gmail.com> | 2011-09-12 14:51:53 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2011-09-16 09:19:53 -0700 |
commit | 1cad78932a0d139dceff78e68808e160a224d57a (patch) | |
tree | 04e9f05e82dfdb79b3b8de10962d4ae0aba06e32 /net | |
parent | c0d5f9db1c7d1b8a9e2f217706e8ea233bac2754 (diff) | |
download | blackbird-op-linux-1cad78932a0d139dceff78e68808e160a224d57a.tar.gz blackbird-op-linux-1cad78932a0d139dceff78e68808e160a224d57a.zip |
libceph: fix parse options memory leak
ceph_destroy_options does not free opt->mon_addr that
is allocated in ceph_parse_options.
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ceph/ceph_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c index 132963abc266..2883ea01e680 100644 --- a/net/ceph/ceph_common.c +++ b/net/ceph/ceph_common.c @@ -232,6 +232,7 @@ void ceph_destroy_options(struct ceph_options *opt) ceph_crypto_key_destroy(opt->key); kfree(opt->key); } + kfree(opt->mon_addr); kfree(opt); } EXPORT_SYMBOL(ceph_destroy_options); |