[deps][vendor] Updates gogo/protobuf

This commit is contained in:
dougbtv
2021-02-18 11:11:43 -05:00
parent 094dcbe2c2
commit fe42962eb5
208 changed files with 20203 additions and 94129 deletions

View File

@@ -318,7 +318,7 @@ func unescape(s string) (ch string, tail string, err error) {
if i > utf8.MaxRune {
return "", "", fmt.Errorf(`\%c%s is not a valid Unicode code point`, r, ss)
}
return string(i), s, nil
return string(rune(i)), s, nil
}
return "", "", fmt.Errorf(`unknown escape \%c`, r)
}