1
0
Fork 0

added ctor for AuthResult to prevent UB

This commit is contained in:
jsteemann 2016-06-07 00:11:10 +02:00
parent ca1ee70585
commit d87aa2b420
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ class AuthEntry {
class AuthResult {
public:
AuthResult() : _authorized(false), _mustChange(false) {}
std::string _username;
bool _authorized;
bool _mustChange;