fix(deps): update module github.com/caddyserver/certmagic to v0.25.1 - autoclosed #63

Closed
Renovate-Clanker wants to merge 113 commits from renovate/github.com-caddyserver-certmagic-0.x into main
2 changed files with 1446 additions and 2 deletions
Showing only changes of commit 14abac6579 - Show all commits
+4 -2
View File
@@ -412,8 +412,10 @@ func readSSHString(reader io.Reader) (string, error) {
return "", err return "", err
} }
strBytes := make([]byte, length) strBytes := make([]byte, length)
if _, err := reader.Read(strBytes); err != nil { if length > 0 {
return "", err if _, err := io.ReadFull(reader, strBytes); err != nil {
return "", err
}
} }
return string(strBytes), nil return string(strBytes), nil
} }
File diff suppressed because it is too large Load Diff