From: tb Date: Fri, 28 Apr 2023 21:40:14 +0000 (+0000) Subject: Mark OpenSSLDie() as __dead X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a988a9f4686156ada7b5b06ba452644ca92a318c;p=openbsd Mark OpenSSLDie() as __dead This tells gcc that OPENSSL_assert() will not return and thus avoids a silly warning that triggers scary gentoo QA warnings. From claudio --- diff --git a/lib/libcrypto/crypto.h b/lib/libcrypto/crypto.h index 066f6246f6b..5b1618ac9b7 100644 --- a/lib/libcrypto/crypto.h +++ b/lib/libcrypto/crypto.h @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto.h,v 1.58 2022/12/26 07:18:50 jmc Exp $ */ +/* $OpenBSD: crypto.h,v 1.59 2023/04/28 21:40:14 tb Exp $ */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * @@ -488,7 +488,7 @@ typedef int *CRYPTO_MEM_LEAK_CB(unsigned long, const char *, int, int, void *); int CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb); /* die if we have to */ -void OpenSSLDie(const char *file, int line, const char *assertion); +__dead void OpenSSLDie(const char *file, int line, const char *assertion); #define OPENSSL_assert(e) (void)((e) ? 0 : (OpenSSLDie(__FILE__, __LINE__, #e),1)) uint64_t OPENSSL_cpu_caps(void);