林樟龙
Results
2
issues of
林樟龙
### Current Behavior If using HTTP, it works normally. ### Expected Behavior using HTTPS, it can works normally ### Error Logs no error ### Steps to Reproduce Request header: ```...
bug
func (s *Structure) GetString(offset int) string { if offset > s.FormattedCount()-1 { return "Unknown" } index := s.Formatted[offset] if index == 0 { return "Unknown" } return s.Strings[index-1] // 这里是否需要判断下是否越界,否则异常下会直接panic?...