mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-02 03:08:15 +00:00
Bump cadvisor dependencies to latest head.
This commit is contained in:
7
vendor/golang.org/x/crypto/ssh/messages.go
generated
vendored
7
vendor/golang.org/x/crypto/ssh/messages.go
generated
vendored
@@ -484,11 +484,12 @@ func parseString(in []byte) (out, rest []byte, ok bool) {
|
||||
return
|
||||
}
|
||||
length := binary.BigEndian.Uint32(in)
|
||||
if uint32(len(in)) < 4+length {
|
||||
in = in[4:]
|
||||
if uint32(len(in)) < length {
|
||||
return
|
||||
}
|
||||
out = in[4 : 4+length]
|
||||
rest = in[4+length:]
|
||||
out = in[:length]
|
||||
rest = in[length:]
|
||||
ok = true
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user