Fixed memory statistics for array (wasn't taking the right statistics for irregular arrays)

This commit is contained in:
Matthias Koefferlein 2020-06-13 19:55:33 +02:00
parent 8b0ab115ed
commit 0a10635363
1 changed files with 1 additions and 1 deletions

View File

@ -2508,7 +2508,7 @@ struct array
}
db::mem_stat (stat, purpose, cat, m_obj, true, (void *) this);
if (mp_base) {
db::mem_stat (stat, purpose, cat, *mp_base, false, (void *) this);
mp_base->mem_stat (stat, purpose, cat, false, (void *) this);
}
}