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
First off, thanks for a great blog about fuzzing. I didn't download the code, but instead copy-pasted from the blog's code snippets and came across this typo below that had me debugging the code for a while. The clue is of course in the comment, but I didn't notice until I printed the strSuffix which was the whole string and not a suffix...
// If we modified characters [0:n], then characters [n:] should stay the sameresultSuffix:=string([]rune(result)[n:])
strSuffix:=string([]rune(str)[:])
First off, thanks for a great blog about fuzzing. I didn't download the code, but instead copy-pasted from the blog's code snippets and came across this typo below that had me debugging the code for a while. The clue is of course in the comment, but I didn't notice until I printed the
strSuffix
which was the whole string and not a suffix...The code in the code base is correct though:
Anyway, I thought you might want to fix the typo in the blog.
The text was updated successfully, but these errors were encountered: