mirror of
https://github.com/rclone/rclone.git
synced 2026-03-26 03:12:36 -04:00
When extsort.Strings() cannot create temporary files (e.g. due to apparmor restrictions or permission denied), it returns a nil sorter with the error on errChan. The code then called Sort() on the nil sorter, causing a panic. Check for nil sorter and return the error instead of panicking. Fixes #9244