Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
userbits 'address out of bounce' fix
We pass (1, 0) to calloc(). The ACLBYTE macro will return &NULL[(0 + 1) >> 3] equals 0. On some systems (including OpenBSD) this will return a zero sized object: a unique pointer that points to unaccessable memory. This is permitted by the standards.
- Loading branch information