On 10/10/06, Michael J. Tubby G8TIC <[EMAIL PROTECTED]> wrote:
> with a local implementation (in library code) of zmalloc that looks like:
>
> void * zmalloc(size_t size)
> {
> void * p = malloc(size);
> if (p)
> memset(p, 0, size);
> return p;
> }
I'm in the habit of just using calloc(1, size), which zeroes memory.
regards,
John
--
## List details at http://www.exim.org/mailman/listinfo/exim-users
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://www.exim.org/eximwiki/