CID
1188166 (#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>
map<client_t,entity_inst_t> client_map;
map<CInode*, map<client_t,Capability::Export> > peer_exports;
Mutation *mut;
- import_state_t() : mut(NULL) {}
+ import_state_t() : state(0), peer(0), tid(0), mut(NULL) {}
};
map<dirfrag_t, import_state_t> import_state;