mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 14:07:36 +03:00
Remove potential integer overflow conversion uint64 -> int64
This commit is contained in:
parent
5d81849603
commit
c95fa11a2f
4 changed files with 14 additions and 12 deletions
2
utils/cache/file_caches.go
vendored
2
utils/cache/file_caches.go
vendored
|
@ -207,7 +207,7 @@ func newFSCache(name, cacheSize, cacheFolder string, maxItems int) (fscache.Cach
|
|||
return nil, nil
|
||||
}
|
||||
|
||||
lru := NewFileHaunter(name, maxItems, int64(size), consts.DefaultCacheCleanUpInterval)
|
||||
lru := NewFileHaunter(name, maxItems, size, consts.DefaultCacheCleanUpInterval)
|
||||
h := fscache.NewLRUHaunterStrategy(lru)
|
||||
cacheFolder = filepath.Join(conf.Server.CacheFolder, cacheFolder)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue