I had a crash on due bounds not being checked in string1.go to fix it i had to change the loop in findnull() from this: ``` for p[l] != 0 { l++ } ``` to this: ``` for l < len(p) && p[l] != 0 { l++ } if l == len(p) { return 0 } ```
I had a crash on due bounds not being checked in string1.go
to fix it i had to change the loop in findnull()
from this:
to this: