From: tb Date: Sun, 30 Apr 2023 19:15:48 +0000 (+0000) Subject: Garbage collect BN_zero_ex() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b019a9aeab6fc78dfdf9f4a08aac37085ddccb28;p=openbsd Garbage collect BN_zero_ex() --- diff --git a/lib/libcrypto/bn/bn_lib.c b/lib/libcrypto/bn/bn_lib.c index 439bdb1e9d3..389dd3ff3ea 100644 --- a/lib/libcrypto/bn/bn_lib.c +++ b/lib/libcrypto/bn/bn_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_lib.c,v 1.85 2023/04/25 19:57:59 tb Exp $ */ +/* $OpenBSD: bn_lib.c,v 1.86 2023/04/30 19:15:48 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -601,12 +601,6 @@ BN_zero(BIGNUM *a) a->top = 0; } -void -BN_zero_ex(BIGNUM *a) -{ - BN_zero(a); -} - int BN_one(BIGNUM *a) {