[subset] Allocate bulk memory with malloc(), not calloc()
We use calloc() to allocate simple structs and set them to zero. For bulk memory, use malloc() that doesn't zero.
Showing
想要评论请 注册 或 登录
We use calloc() to allocate simple structs and set them to zero. For bulk memory, use malloc() that doesn't zero.