Add missing DbfwThread initialization

The thread objects didn't initialize the rule version to the proper value.
This commit is contained in:
Markus Mäkelä 2017-09-13 11:37:05 +03:00
parent 3df5e6f137
commit efb1e541e2

View File

@ -95,6 +95,11 @@ MXS_END_DECLS
/** The rules and users for each thread */
struct DbfwThread
{
DbfwThread():
rule_version(0)
{
}
int rule_version;
RuleList rules;
UserMap users;