<!-- If you have a question please search or post to our Discourse site: https://discourse.julialang.org. We use the GitHub issue tracker for bug reports and feature requests only. If you're submitting a bug report, be sure to include as much relevant information as possible, including: 1. The output of `versioninfo()` 2. How you installed Julia 3. A minimal working example (MWE), also known as a minimum reproducible example If you're experiencing a problem with a particular package, open an issue on that package's repository instead. Thanks for contributing to the Julia project! --> This has happened since #53896 Here is a MWE. ``` julia> a = Memory{UInt8}(undef, 10); julia> fill!(a, 0x01); julia> String(view(a, 1:2)) "\x01\x01" julia> a 0-element Memory{UInt8} ``` I expected `a` to not be changed. This is causing issues in https://github.com/JuliaWeb/HTTP.jl/issues/1166 And I am also using `String(view(` in https://github.com/JuliaIO/ZipArchives.jl/blob/5bacade2f71e0c28e2aeba09d21a665ecad131cd/src/reader.jl#L106