Lines Matching full:realloc
496 Check every call to `malloc' or `realloc' to see if it returned
497 zero. Check `realloc' even if you are making the block smaller; in a
498 system that rounds block sizes to a power of 2, `realloc' may get a
501 In Unix, `realloc' can destroy the storage block if it returns zero.
502 GNU `realloc' does not have this bug: if it fails, the original block
2515 * In particular, don't unconditionally declare `malloc' or `realloc'.
2519 call `malloc' and `realloc', respectively, and check the results.
2525 calls to `malloc' and `realloc' work fine. For the few
2527 *conditionalized* declarations of `malloc' and `realloc'--or put