os/bluestore/BitAllocator.cc: fix uninitialized member

Silence Coverity 1398204

Signed-off-by: Li Wang <li.wang@kylin-cloud.com>
This commit is contained in:
Li Wang 2016-12-30 14:01:17 +00:00
parent 9939a6550f
commit 387ad76b5e

View File

@ -740,7 +740,7 @@ bmap_area_type_t BitMapArea::get_type()
* BitMapArea Leaf and Internal
*/
BitMapAreaIN::BitMapAreaIN(CephContext* cct)
: BitMapArea(cct)
: BitMapArea(cct), m_child_list(nullptr)
{
// nothing
}