mirror of
https://github.com/golang/go
synced 2024-11-18 18:04:46 -07:00
runtime: fix crash if user sets MemProfileRate=0
R=golang-dev, r CC=golang-dev https://golang.org/cl/5284044
This commit is contained in:
parent
fc61ea3ba3
commit
1135fc3978
@ -220,7 +220,8 @@ runtime·allocmcache(void)
|
||||
rate = runtime·MemProfileRate;
|
||||
if(rate > 0x3fffffff) // make 2*rate not overflow
|
||||
rate = 0x3fffffff;
|
||||
c->next_sample = runtime·fastrand1() % (2*rate);
|
||||
if(rate != 0)
|
||||
c->next_sample = runtime·fastrand1() % (2*rate);
|
||||
|
||||
return c;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user