mirror of
https://github.com/ceph/ceph
synced 2025-04-01 14:51:13 +00:00
Merge pull request #37 from ivancich/wip-fix-uninit-data
Fix uninitialized scalar data
This commit is contained in:
commit
b632cfda4f
@ -296,11 +296,11 @@ namespace crimson {
|
||||
// an idle client becoming unidle
|
||||
double prop_delta = 0.0;
|
||||
|
||||
c::IndIntruHeapData reserv_heap_data;
|
||||
c::IndIntruHeapData lim_heap_data;
|
||||
c::IndIntruHeapData ready_heap_data;
|
||||
c::IndIntruHeapData reserv_heap_data = 0;
|
||||
c::IndIntruHeapData lim_heap_data = 0;
|
||||
c::IndIntruHeapData ready_heap_data = 0;
|
||||
#if USE_PROP_HEAP
|
||||
c::IndIntruHeapData prop_heap_data;
|
||||
c::IndIntruHeapData prop_heap_data = 0;
|
||||
#endif
|
||||
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user