Can you add a new realloc_zeroed helper?, e.g. void * realloc_zeroed(void *ptr, size_t old_size, size_t new_size) { ptr = realloc(ptr, new_size); if (ptr) memset(ptr + old_size, 0, new_size - old_size); return ptr; } _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs