Skip to content

Commit

Permalink
resolve uninitialized variable from valgrind
Browse files Browse the repository at this point in the history
Valgrind found a potential uninitialized variable access in our schema.
  • Loading branch information
trws committed Aug 8, 2023
1 parent c0ab1de commit 68fa601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource/schema/ephemeral.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ephemeral_t {

private:
std::map<std::string, std::string> m_store;
uint64_t m_epoch;
uint64_t m_epoch = 0;
};

} // resource_model
Expand Down

0 comments on commit 68fa601

Please sign in to comment.