aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorNoah Watkins <noahwatkins@gmail.com>2011-09-12 14:51:53 -0700
committerSage Weil <sage@newdream.net>2011-09-16 09:19:53 -0700
commit1cad78932a0d139dceff78e68808e160a224d57a (patch)
tree04e9f05e82dfdb79b3b8de10962d4ae0aba06e32 /net
parentlibceph: initialize ack_stamp to avoid unnecessary connection reset (diff)
downloadlinux-dev-1cad78932a0d139dceff78e68808e160a224d57a.tar.xz
linux-dev-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.c1
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);