- stats: fix crash on load

This commit is contained in:
Simon Zolin 2019-09-13 12:55:01 +03:00
parent 8f9ca4cba7
commit 8b7d08ebfc
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ func deserialize(u *unit, udb *unitDB) {
if n < len(u.nResult) {
n = len(u.nResult) // n = min(len(udb.NResult), len(u.nResult))
}
for i := 1; i <= n; i++ {
for i := 1; i < n; i++ {
u.nResult[i] = udb.NResult[i]
}