CID
1188165 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)
2. uninit_member: Non-static class member "state" is not initialized in
this constructor nor in any functions that it calls.
4. uninit_member: Non-static class member "peer" is not initialized in this
constructor nor in any functions that it calls.
6. uninit_member: Non-static class member "tid" is not initialized in this
constructor nor in any functions that it calls.
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
utime_t last_cum_auth_pins_change;
int last_cum_auth_pins;
int num_remote_waiters; // number of remote authpin waiters
- export_state_t() : mut(NULL), last_cum_auth_pins(0), num_remote_waiters(0) {}
+ export_state_t() : state(0), peer(0), tid(0), mut(NULL),
+ last_cum_auth_pins(0), num_remote_waiters(0) {}
};
map<CDir*, export_state_t> export_state;