mirror of
https://github.com/rclone/rclone.git
synced 2025-12-06 00:03:32 +00:00
fs: Use an in place filter in ListDirSorted
This commit is contained in:
@@ -607,7 +607,7 @@ func ListDirSorted(fs Fs, includeAll bool, dir string) (entries DirEntries, err
|
||||
|
||||
// filter the entries if required
|
||||
if !includeAll {
|
||||
newEntries := make(DirEntries, 0, len(entries))
|
||||
newEntries := entries[:0] // in place filter
|
||||
for _, entry := range entries {
|
||||
switch x := entry.(type) {
|
||||
case Object:
|
||||
|
||||
Reference in New Issue
Block a user