test(session): add unit tests for session behavior
SonarQube Scan / SonarQube Trigger (push) Successful in 1m51s

This commit is contained in:
2026-01-23 19:03:01 +07:00
parent 169bc2358c
commit 761ee3f099
2 changed files with 1446 additions and 2 deletions
+4 -2
View File
@@ -412,8 +412,10 @@ func readSSHString(reader io.Reader) (string, error) {
return "", err
}
strBytes := make([]byte, length)
if _, err := reader.Read(strBytes); err != nil {
return "", err
if length > 0 {
if _, err := io.ReadFull(reader, strBytes); err != nil {
return "", err
}
}
return string(strBytes), nil
}