From: Sage Weil Date: Fri, 24 Aug 2012 23:27:57 +0000 (-0700) Subject: rgw: init RGWRados::cct in ctor X-Git-Tag: v0.53~229^2~34 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=532d1b10d6aa9f0d38f61144fb9fd6d313bf4682;p=ceph.git rgw: init RGWRados::cct in ctor Coverity cid 717382 Signed-off-by: Sage Weil --- diff --git a/src/rgw/rgw_rados.h b/src/rgw/rgw_rados.h index 50f07b893b4..fc0c3e5613e 100644 --- a/src/rgw/rgw_rados.h +++ b/src/rgw/rgw_rados.h @@ -294,9 +294,9 @@ protected: librados::IoCtx gc_pool_ctx; // .rgw.gc public: - RGWRados() : lock("rados_timer_lock"), timer(NULL), gc(NULL), use_gc_thread(false), - num_watchers(0), watchers(NULL), watch_handles(0), - bucket_id_lock("rados_bucket_id"), max_bucket_id(0), rados(NULL) {} + RGWRados() : lock("rados_timer_lock"), timer(NULL), num_watchers(0), watchers(NULL), watch_handles(NULL), + bucket_id_lock("rados_bucket_id"), max_bucket_id(0), + cct(NULL), rados(NULL) {} virtual ~RGWRados() {} void tick();