From: Yehuda Sadeh Date: Mon, 1 Feb 2016 20:39:43 +0000 (-0500) Subject: librgw: initialize RGWLib pointer members X-Git-Tag: v10.1.0~382^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=195185d403efe5b543ec0b8b83fdebc43fc60266;p=ceph.git librgw: initialize RGWLib pointer members Signed-off-by: Matt Benjamin --- diff --git a/src/rgw/rgw_lib.h b/src/rgw/rgw_lib.h index 1a75e379e71..9cea8e40242 100644 --- a/src/rgw/rgw_lib.h +++ b/src/rgw/rgw_lib.h @@ -29,7 +29,8 @@ namespace rgw { RGWRados* store; public: - RGWLib() {} + RGWLib() : fec(nullptr), fe(nullptr), olog(nullptr), store(nullptr) + {} ~RGWLib() {} RGWRados* get_store() { return store; }