Merge: - stats: fix crash on load

Close #999

* commit '8b7d08ebfc1b389c301300f6bad7368e85617921':
  - stats: fix crash on load
This commit is contained in:
Simon Zolin 2019-09-13 13:10:46 +03:00
commit 9a28526fa3

View File

@ -296,7 +296,7 @@ func deserialize(u *unit, udb *unitDB) {
if n < len(u.nResult) { if n < len(u.nResult) {
n = len(u.nResult) // n = min(len(udb.NResult), 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] u.nResult[i] = udb.NResult[i]
} }