From 11eb67eec9b4d990ae4df680cf7db77dad1b8630 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 25 Jun 2020 19:59:19 -0700 Subject: Some memory allocation improvements - All the memory-allocation macros now auto-check for failure and exit with a failure message that incudes the caller's file and lineno info. This includes strdup(). - Added the `--max-alloc=SIZE` option to be able to override the memory allocator's sanity-check limit. It defaults to 1G (as before). Fixes bugzilla bug 12769. --- checksum.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'checksum.c') diff --git a/checksum.c b/checksum.c index 824159b0..b3989aa2 100644 --- a/checksum.c +++ b/checksum.c @@ -271,8 +271,6 @@ void get_checksum2(char *buf, int32 len, char *sum) free(buf1); buf1 = new_array(char, len+4); len1 = len; - if (!buf1) - out_of_memory("get_checksum2"); } memcpy(buf1, buf, len); -- cgit v1.2.1