Realloc 1133 source3/include/proto.h void *Realloc(void *p, size_t size, bool free_old_on_error); Realloc 217 source3/include/smb_macros.h #define SMB_REALLOC(p,s) Realloc((p),(s),True) /* Always frees p on error or s == 0 */ Realloc 218 source3/include/smb_macros.h #define SMB_REALLOC_KEEP_OLD_ON_ERROR(p,s) Realloc((p),(s),False) /* Never frees p on error or s == 0 */