summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/account.h')
-rw-r--r--src/account.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/account.h b/src/account.h
index fee12595..fd98a9ac 100644
--- a/src/account.h
+++ b/src/account.h
@@ -193,7 +193,17 @@ public:
TRACE_CTOR(account_t::xdata_t::details_t, "");
}
// A copy copies nothing
- details_t(const details_t&) {
+ details_t(const details_t&)
+ : calculated(false),
+ gathered(false),
+
+ posts_count(0),
+ posts_virtuals_count(0),
+ posts_cleared_count(0),
+ posts_last_7_count(0),
+ posts_last_30_count(0),
+ posts_this_month_count(0)
+ {
TRACE_CTOR(account_t::xdata_t::details_t, "copy");
}
~details_t() throw() {