]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ESession.h: initialze 'open' in the constructor with false
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Fri, 1 Mar 2013 11:33:37 +0000 (12:33 +0100)
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Fri, 1 Mar 2013 11:33:37 +0000 (12:33 +0100)
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
src/mds/events/ESession.h

index 91ad6c45ae43091a0568c22fdd00033dedb807d7..95cd690fd15f105dbd2efe3047c8cc5e70454fa0 100644 (file)
@@ -30,7 +30,7 @@ class ESession : public LogEvent {
   version_t inotablev;
 
  public:
-  ESession() : LogEvent(EVENT_SESSION) { }
+  ESession() : LogEvent(EVENT_SESSION), open(false) { }
   ESession(const entity_inst_t& inst, bool o, version_t v) :
     LogEvent(EVENT_SESSION),
     client_inst(inst),