Follow-up: p = realloc(p, size); // also needs to be updated to:
p = = realloc(p, size * sizeof(int)); // For 32/64 bit p = = realloc(p, size * sizeof(int32_t)); // UTF8 Thanks, Michael Griffin <[email protected]> -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

