func maybeInt()

in stats.go [53:58]


func maybeInt(p *int) int {
	if p == nil {
		return 0
	}
	return *p
}