diff --git a/arangod/Agency/Node.cpp b/arangod/Agency/Node.cpp index 978829dc5f..1dab13d96b 100644 --- a/arangod/Agency/Node.cpp +++ b/arangod/Agency/Node.cpp @@ -139,6 +139,8 @@ std::string Node::uri() const { /// Move constructor Node::Node(Node&& other) : _node_name(std::move(other._node_name)), + _parent(nullptr), + _store(nullptr), _children(std::move(other._children)), _value(std::move(other._value)), _vecBuf(std::move(other._vecBuf)),