mirror of
https://github.com/rclone/rclone.git
synced 2025-07-18 21:14:41 +02:00
This commit addresses a potential memory leak in the S3 backend where strings extracted from large API responses were keeping the entire response in memory. The issue occurs because Go strings share underlying memory with their source, preventing garbage collection of large XML responses even when only small substrings are needed. Signed-off-by: liubingrun <liubr1@chinatelecom.cn>