uint8 array name buf is declared of size 4.at line number 411 in torture/basic/base.c file. uint8_t buf[4]; at line number 431 this buf is being initialized by following line memset(&buf, 0, 4); The above line can cause crash or memory corruption. It should be memset(buf,0,4).
Fixed in -r 25596. Thanks!
.