From 5e1f879ab5a2bfdf2d58222f965f93fe1b511ce7 Mon Sep 17 00:00:00 2001 From: Hikar Date: Sat, 18 Feb 2017 08:44:49 +0100 Subject: [PATCH] Removed ugly size_t less than zero check. CLA: trivial. Reviewed-by: Richard Levitte Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2674) --- crypto/mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/mem.c b/crypto/mem.c index aae92d41b1..0584814f73 100644 --- a/crypto/mem.c +++ b/crypto/mem.c @@ -162,7 +162,7 @@ void *CRYPTO_malloc(size_t num, const char *file, int line) if (malloc_impl != NULL && malloc_impl != CRYPTO_malloc) return malloc_impl(num, file, line); - if (num <= 0) + if (num == 0) return NULL; FAILTEST(); -- GitLab