Skip to content

Commit

Permalink
Modify slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed May 20, 2020
1 parent dc2ce52 commit 7bcfbc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions string/fuzz.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ func Fuzz(data []byte) int {
md5_d := md5.New()
find := hex.EncodeToString(md5_d.Sum(data))

IndexAll(string(data), find[:8], -1)
l := IndexAllIgnoreCaseUnicode(string(data), find[:8], -1)
IndexAll(string(data), find[:2], -1)
l := IndexAllIgnoreCaseUnicode(string(data), find[:2], -1)
HighlightString(string(data), l, "__IN__", "__OUT__")
return 1
}

0 comments on commit 7bcfbc2

Please sign in to comment.