1
0
mirror of https://github.com/golang/go synced 2024-11-18 22:44:48 -07:00
R=golang-dev, r, r2
CC=golang-dev
https://golang.org/cl/2880041
This commit is contained in:
Graham Miller 2010-11-04 13:45:18 -07:00 committed by Rob Pike
parent 3a50d721a8
commit 23c41a1ef2

View File

@ -320,6 +320,8 @@ memequal(uint32 s, void *a, void *b)
{ {
byte *ba, *bb, *aend; byte *ba, *bb, *aend;
if(a == b)
return 1;
ba = a; ba = a;
bb = b; bb = b;
aend = ba+s; aend = ba+s;