diff options
author | Tom Joseph <tomjoseph@in.ibm.com> | 2017-01-26 15:17:30 +0530 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2017-02-24 17:02:46 +0000 |
commit | 32db22e9a57e50c29077ef0173495c98df69073d (patch) | |
tree | 3ed4b30ce4fbc2169e3ab8018e9d4a8b35f9c7d9 /session.hpp | |
parent | 75362836ccfa5ab5ccf8f327097d531c056df7c2 (diff) | |
download | phosphor-net-ipmid-32db22e9a57e50c29077ef0173495c98df69073d.tar.gz phosphor-net-ipmid-32db22e9a57e50c29077ef0173495c98df69073d.zip |
Initialise the in/out sequence numbers
Change-Id: Iff887dddca1df013ea0fa1ac452ad9d2c04c5d12
Signed-off-by: Tom Joseph <tomjoseph@in.ibm.com>
Diffstat (limited to 'session.hpp')
-rw-r--r-- | session.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/session.hpp b/session.hpp index 1eec759..99bb81d 100644 --- a/session.hpp +++ b/session.hpp @@ -76,8 +76,8 @@ struct SequenceNumbers } private: - uint32_t in; - uint32_t out; + uint32_t in = 0; + uint32_t out = 0; }; /* * @class Session |