You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Detected by clang -faddress-sanitizer.
The bug came in 081f72a, where
we started calculating lengths with sizeof on string constants
instead of using strlen. Since string constants include the null
byte, sizeof(".dir"), for example, is 5, but we've been copying 6
bytes.
This patch resolves [perl #111586] and includes revisions by the
committer.
0 commit comments