mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-15 10:04:22 -08:00
4d7aa57da0
* Update vendor github.com/beevik/ntp@v0.2.0 * Update vendor github.com/mdlayher/netlink/... * Update vendor github.com/mdlayher/wifi/... Adds vendor github.com/mdlayher/genetlink * Update vendor github.com/prometheus/common/... * Update vendor github.com/prometheus/procfs/... * Update vendor golang.org/x/sys/unix * Update vendor golang.org/x/sys/windows
21 lines
287 B
Go
21 lines
287 B
Go
//+build gofuzz
|
|
|
|
package genetlink
|
|
|
|
func Fuzz(data []byte) int {
|
|
return fuzzMessage(data)
|
|
}
|
|
|
|
func fuzzMessage(data []byte) int {
|
|
var m Message
|
|
if err := (&m).UnmarshalBinary(data); err != nil {
|
|
return 0
|
|
}
|
|
|
|
if _, err := m.MarshalBinary(); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return 1
|
|
}
|