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