diff options
author | dec05eba <0xdec05eba@gmail.com> | 2018-05-02 07:42:21 +0200 |
---|---|---|
committer | dec05eba <0xdec05eba@gmail.com> | 2018-05-02 07:42:25 +0200 |
commit | df4c9798e514eaaf7d8387110eb06a2187e43eea (patch) | |
tree | 4ce9cb4361dd16f7bf41fceab4158a6d54206141 /include | |
parent | b0cc417bc9289fdd5c98028136e37c6a6ee62944 (diff) |
Fix add user callback bug, missing assignment in constructor...
Diffstat (limited to 'include')
-rw-r--r-- | include/odhtdb/Database.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/odhtdb/Database.hpp b/include/odhtdb/Database.hpp index e34fd9d..cf24c7e 100644 --- a/include/odhtdb/Database.hpp +++ b/include/odhtdb/Database.hpp @@ -102,6 +102,8 @@ namespace odhtdb const Group *groupToAddUserTo; DatabaseAddUserRequest(const Hash *_nodeHash, const Hash *_requestHash, u64 _timestamp, const User *_creatorUser, const User *_userToAdd, const Group *_groupToAddUserTo) : + nodeHash(_nodeHash), + requestHash(_requestHash), timestamp(_timestamp), creatorUser(_creatorUser), userToAdd(_userToAdd), |