Fix int32 overflow in local storage stats.

This commit is contained in:
John Preston 2019-08-09 10:21:18 +01:00
parent 93793d8bdd
commit 63203ecc00
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ struct TaggedValue {
struct TaggedSummary {
size_type count = 0;
size_type totalSize = 0;
int64 totalSize = 0;
};
struct Stats {
TaggedSummary full;