暂无描述

main.go 220B

1234567891011
  1. package pprof
  2. import (
  3. "github.com/google/pprof/profile"
  4. )
  5. // Fuzz can be used with https://github.com/dvyukov/go-fuzz to do fuzz testing on ParseData
  6. func Fuzz(data []byte) int {
  7. profile.ParseData(data)
  8. return 0
  9. }