You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See example at http://play.golang.org/p/5Nf9HqvwAX
I found the bug by inspection while perusing http://golang.org/src/pkg/strconv/quote.go
237 for j := 0; j < 2; j++ { // one digit already; two more
238 x := int(s[j]) - '0'
239 if x < 0 || x > 7 {
// FIXME(go-team): must set 'err'.
240 return
241 }
242 v = (v << 3) | x
243 }
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: